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
add comment
[mcs.git]
/
tests
/
test-607.cs
blob
373041f8cb90be5deede773d75fc3a9f2a343da2
1
using
System
;
2
using
System
.
Reflection
;
3
4
[
assembly
:
AssemblyVersion
(
"7"
)]
5
6
class
Program
7
{
8
static int
Main
()
9
{
10
Assembly a
=
Assembly
.
GetExecutingAssembly
();
11
if
(
a
.
GetName
().
Version
!=
new
Version
(
7
,
0
,
0
,
0
))
12
return
1
;
13
return
0
;
14
}
15
}