-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathProgram.cs
More file actions
31 lines (30 loc) · 1.29 KB
/
Program.cs
File metadata and controls
31 lines (30 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// /*
// * The attached / following is part of SharpMap.Data.Providers.Kml
// * SharpMap.Data.Providers.Kml is free software © 2008 Newgrove Consultants Limited,
// * www.newgrove.com; you can redistribute it and/or modify it under the terms
// * of the current GNU Lesser General Public License (LGPL) as published by and
// * available from the Free Software Foundation, Inc.,
// * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA: http://fsf.org/
// * This program is distributed without any warranty;
// * without even the implied warranty of merchantability or fitness for purpose.
// * See the GNU Lesser General Public License for the full details.
// *
// * Author: John Diss 2009
// *
// */
using System;
namespace RegexSource
{
internal class Program
{
private static void Main(string[] args)
{
//Console.WriteLine("Choose an app: Type a for lower, type b for upper.");
//string a = Console.ReadLine();
//if (String.Compare(a, "a", StringComparison.InvariantCultureIgnoreCase) == 0)
RegexToLowerApp.Run();
//else if (String.Compare(a, "b", StringComparison.InvariantCultureIgnoreCase) == 0)
// RegexToLowerApp.Run();
}
}
}