Last change
on this file since 13825 was
12762,
checked in by aballeit, 10 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
306 bytes
|
Line | |
---|
1 | using System;
|
---|
2 |
|
---|
3 | namespace SharpVectors.Text
|
---|
4 | {
|
---|
5 | public class StringUtil
|
---|
6 | {
|
---|
7 | public static bool IsInArray(string[] arrayToLookIn, string strToFind)
|
---|
8 | {
|
---|
9 | foreach (string item in arrayToLookIn)
|
---|
10 | {
|
---|
11 | if (item == strToFind)
|
---|
12 | return true;
|
---|
13 | }
|
---|
14 | return false;
|
---|
15 | }
|
---|
16 | }
|
---|
17 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.