/[projects]/dao/DaoMqPump2/DaoMqPump2/UppercaseContainer.cs
ViewVC logotype

Contents of /dao/DaoMqPump2/DaoMqPump2/UppercaseContainer.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2089 - (show annotations) (download)
Thu Nov 28 09:27:33 2013 UTC (10 years, 6 months ago) by torben
File size: 444 byte(s)
Add (unused) UppercaseContainer class
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4
5 namespace DaoMqPump2
6 {
7 class UppercaseContainer
8 {
9 List<string> container = new List<string>();
10
11 public void add(string newstr)
12 {
13 container.Add( newstr.ToUpper() );
14 }
15
16 public bool contains(string search)
17 {
18 return container.Contains(search.ToUpper());
19 }
20
21
22 }
23 }

  ViewVC Help
Powered by ViewVC 1.1.20