mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-12-29 11:17:07 +00:00
31 lines
No EOL
1.2 KiB
C#
31 lines
No EOL
1.2 KiB
C#
#region " © 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 a diferent delimiter for this field. </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 FieldDelimiterAttribute : FieldAttribute
|
|
{
|
|
internal string mSeparator;
|
|
|
|
/// <summary>Indicates a diferent delimiter for this field. </summary>
|
|
/// <param name="separator">The separator string used to split the fields of the record.</param>
|
|
public FieldDelimiterAttribute(string separator)
|
|
{
|
|
if (separator == null || separator.Length == 0)
|
|
throw new BadUsageException("The separator parameter of the FieldDelimited attribute can't be null or empty");
|
|
else
|
|
this.mSeparator = separator;
|
|
}
|
|
}
|
|
} |