Files
linux-packaging-mono/mcs/errors/cs0023-14.cs

16 lines
229 B
C#
Raw Normal View History

// CS0023: The `++' operator cannot be applied to operand of type `bool'
// Line: 13
public class C{
public static bool Foo{
get{
return false;
}
set{
}
}
public static void Main(){
Foo++;
}
}