repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-280.cs
blob
aff2fbb5994586140c993b85faf6c83707cfd751
1
//
2
// Thisis just a compilation test for bug 61593
3
using
System
;
4
namespace
AppFramework
.
Util
5
{
6
public class
Logic
7
{
8
static public bool
EnumInSet
(
Enum anEnum
,
Enum
[]
checkSet
)
9
{
10
foreach
(
Enum aVal
in
checkSet
)
11
{
12
if
(
aVal
==
anEnum
)
13
{
14
return true
;
15
}
16
}
17
return false
;
18
}
19
20
static void
Main
() {}
21
}
22
}
23