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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0019-8.cs
blob
f17c8736aab552e68feb3ccde1cc689b902607f9
1
// cs0019-8.cs: Operator `-' cannot be applied to operands of type `string' and `ulong'
2
// Line : 12
3
4
using
System
;
5
6
public class
C
7
{
8
public static void
Main
()
9
{
10
ulong
aa
=
10
;
11
ulong
bb
=
3
;
12
Console
.
WriteLine
(
"bug here --> "
+
aa
-
bb
);
13
}
14
}