Mercurial > repos > IBBoard.Ini
view NonExistantIniSection.cs @ 13:ee9f11c67399 default tip
* Correct version number pattern
no-open-ticket
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Mon, 28 Feb 2011 20:22:41 +0000 |
parents | f6f726c92e56 |
children |
line wrap: on
line source
// This file (NonExistantIniSection.cs) is a part of [SOME APPLICATION] and is copyright 2009 IBBoard. // // 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. using System; namespace IBBoard.Ini { /// <summary> /// A special case sub-class of <see cref=" IniSection"/> for when <see cref=" IniFile"/> does not contain the required section. /// Used to reduce "if not null" checks as they won't contain any lines or properties, as recommended by Rober C Martin's "Cleaner Code" book /// </summary> public class NonExistantIniSection : IniSection { public NonExistantIniSection() : base("NonExistant") { } } }