mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-01 03:00:17 +00:00
28 lines
951 B
C#
28 lines
951 B
C#
|
#region " <20> Copyright 2005-07 to Marcos Meli - http://www.marcosmeli.com.ar"
|
|||
|
|
|||
|
// Errors, suggestions, contributions, send a mail to: marcos@filehelpers.com.
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
using System;
|
|||
|
|
|||
|
namespace FileHelpers
|
|||
|
{
|
|||
|
/// <summary>Indicates that the target field is included only under some circunstances.</summary>
|
|||
|
/// <remarks>See the <a href="attributes.html">Complete Attributes List</a> for more clear info and examples of each one.</remarks>
|
|||
|
/// <seealso href="attributes.html">Attributes List</seealso>
|
|||
|
/// <seealso href="quick_start.html">Quick Start Guide</seealso>
|
|||
|
/// <seealso href="examples.html">Examples of Use</seealso>
|
|||
|
[AttributeUsage(AttributeTargets.Field)]
|
|||
|
public sealed class FieldOptionalAttribute : Attribute
|
|||
|
{
|
|||
|
#region " Constructors "
|
|||
|
|
|||
|
/// <summary>Indicates that the target field is included only under some circunstances.</summary>
|
|||
|
public FieldOptionalAttribute()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|