#region " © Copyright 2005-07 to Marcos Meli - http://www.marcosmeli.com.ar" // Errors, suggestions, contributions, send a mail to: marcos@filehelpers.com. #endregion namespace FileHelpers { /// Indicates the convertion used in the . public enum ConverterKind { /// Null Converter. None = 0, /// /// Convert from/to Date values. /// Params: arg1 is the string with the date format. /// Date, /// Convert from/to Boolean values. Boolean, /// /// Convert from/to Byte values. /// Params: arg1 is the decimal separator, by default '.' /// Byte, /// /// Convert from/to Int16 or short values. /// Params: arg1 is the decimal separator, by default '.' /// Int16, /// /// Convert from/to Int32 or int values. /// Params: arg1 is the decimal separator, by default '.' /// Int32, /// /// Convert from/to Int64 or long values. /// Params: arg1 is the decimal separator, by default '.' /// Int64, /// /// Convert from/to Decimal values. /// Params: arg1 is the decimal separator, by default '.' /// Decimal, /// /// Convert from/to Double values. /// Params: arg1 is the decimal separator, by default '.' /// Double, /// /// Convert from/to Single values. /// Params: arg1 is the decimal separator, by default '.' /// Single, /// /// Convert from/to Byte values. /// Params: arg1 is the decimal separator, by default '.' /// SByte, /// /// Convert from/to UInt16 or unsigned short values. /// Params: arg1 is the decimal separator, by default '.' /// UInt16, /// /// Convert from/to UInt32 or unsigned int values. /// Params: arg1 is the decimal separator, by default '.' /// UInt32, /// /// Convert from/to UInt64 or unsigned long values. /// Params: arg1 is the decimal separator, by default '.' /// UInt64 } }