12 lines
264 B
C#
12 lines
264 B
C#
// CS0647: Error during emitting `System.Runtime.CompilerServices.MethodImplAttribute' attribute. The reason is `Incorrect argument value'
|
|
// Line: 8
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
class Program
|
|
{
|
|
[MethodImpl((MethodImplOptions)255)]
|
|
void Foo()
|
|
{
|
|
}
|
|
} |