Files
linux-packaging-mono/mcs/errors/cs0713.cs

6 lines
196 B
C#
Raw Normal View History

// CS0713: Static class `StaticClass' cannot derive from type `System.ArgumentException'. Static classes must derive from object
// Line: 4
static class StaticClass: System.ArgumentException {
}