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
* TaskLoggingHelper.cs (LogErrorFromException): Add missing overload.
[mcs.git]
/
tests
/
test-296.cs
blob
b5954434b1827528c66b5c368d8b924e4fc27e91
1
using
System
;
2
3
public class
GetElementTypeTest
{
4
static int
Main
(
string
[]
args
) {
5
GetElementTypeTest me
=
new
GetElementTypeTest
();
6
Type t
=
me
.
GetType
();
7
Type elementt
=
t
.
GetElementType
();
8
9
if
(
elementt
!=
null
)
10
return
1
;
11
return
0
;
12
}
13
}
14