#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
{
/// Indicates that the engine must ignore the empty lines while reading.
/// See the Complete Attributes List for more clear info and examples of each one.
/// Attributes List
/// Quick Start Guide
/// Examples of Use
[AttributeUsage(AttributeTargets.Class)]
public sealed class IgnoreEmptyLinesAttribute : Attribute
{
internal bool mIgnoreSpaces = false;
/// Indicates that the engine must ignore the empty lines while reading.
public IgnoreEmptyLinesAttribute()
{}
/// Indicates that the engine must ignore the empty lines while reading.
/// Indicates if also must ignore lines with spaces.
public IgnoreEmptyLinesAttribute(bool ignoreSpaces)
{
mIgnoreSpaces = ignoreSpaces;
}
}
}