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
2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
test-180.cs
blob
b70775d9d1969959f8882d80c7a36858413d86b3
1
using
System
;
2
3
public class
Testing
4
{
5
public enum
Fruit { Apple, Orange }
;
6
7
public static void
Main
()
8
{
9
Console
.
WriteLine
(
Convert
.
ToInt64
(
Fruit
.
Orange
as
Enum
) );
10
}
11
}