repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0039.cs
blob
e41330bb03941d3e2e23faa08c05fe889c3eaff2
1
// CS0039: Cannot convert type `decimal' to `string' via a built-in conversion
2
// Line: 8
3
class
A
{
4
public static void
Main
()
5
{
6
decimal
tryDec
;
7
tryDec
=
1234.2345
M
;
8
9
object
a
=
tryDec
as string
;
10
}
11
}
12
13
14
15
16