blob: 82dcb3a2c172886ed1ef3fdf15147137e3c87bec (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS1502: The best overloaded method match for `string.String(char*)' has some invalid arguments
// Line: 8
class C
{
static string Prop {
get {
return new string ("s");
}
}
}
|