2010-07-25 Carlos Alberto Cortez <calberto.cortez@gmail.com>
[mono.git] / mcs / errors / cs0117-6.cs
1 // CS0117: `string' does not contain a definition for `Parse'
2 // Line: 10
3 \r
4 using System;\r
5 \r
6 class string_parse\r
7 {\r
8         public static void Main ()\r
9         {\r
10                 string drawBackLabel = string.Parse("absDrawBack");\r
11         }\r
12 }