1
|
1 // This file (IniBlankLine.cs) is a part of the IBBoard.Ini library and is copyright 2009 IBBoard.
|
|
2 //
|
6
|
3 // The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.
|
1
|
4
|
|
5 using System;
|
|
6
|
|
7 namespace IBBoard.Ini
|
|
8 {
|
|
9 /// <summary>
|
|
10 /// A blank line in an Ini file
|
|
11 /// </summary>
|
|
12 public class IniBlankLine : IIniLine
|
|
13 {
|
|
14 public IniBlankLine()
|
|
15 {
|
|
16 }
|
|
17
|
|
18 public override string ToString()
|
|
19 {
|
|
20 return "";
|
|
21 }
|
|
22
|
|
23 }
|
|
24 }
|