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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0117-6.cs
blob
07b8ea96e95ca3af939ece5bf13b55cfc55668a9
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
}