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