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-10 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0117-6.cs
blob
c9ad9b03c584a5852d19e46daaa8af6d092b693a
1
// CS0117: `string' does not contain a definition for `Parse'
2
// Line: 10
3
4
using
System
;
5
6
class
string_parse
7
{
8
public static void
Main
()
9
{
10
string
drawBackLabel
=
string
.
Parse
(
"absDrawBack"
);
11
}
12
}