mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
701 B
22 lines
701 B
using System; |
|
using System.Diagnostics; |
|
using System.Reflection; |
|
using System.Runtime.CompilerServices; |
|
|
|
[assembly: CompilationRelaxations(8)] |
|
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] |
|
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue | DebuggableAttribute.DebuggingModes.DisableOptimizations)] |
|
[assembly: My(/*Could not decode attribute arguments.*/)] |
|
[assembly: AssemblyVersion("0.0.0.0")] |
|
|
|
public class MyAttribute : Attribute |
|
{ |
|
[NullableContext(1)] |
|
public MyAttribute(string x, Type t) |
|
{ |
|
} |
|
} |
|
|
|
public class ABCD`1<string> |
|
{ |
|
}
|
|
|