10 lines
183 B
C#
Raw Normal View History

// CS1608: The RequiredAttribute attribute is not permitted on C# types
// Line: 6
using System.Runtime.CompilerServices;
[RequiredAttribute (typeof (object))]
class ClassMain {
}