Skip to content

Instantly share code, notes, and snippets.

@baobao
Created November 2, 2018 00:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baobao/e87b20a542872ea12d1e553f76e6d837 to your computer and use it in GitHub Desktop.
Save baobao/e87b20a542872ea12d1e553f76e6d837 to your computer and use it in GitHub Desktop.
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Security;
using System.Security.Permissions;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("0.0.0.0")]
[module: UnverifiableCode]
internal class Csharp
{
private string instanceVaribale = "hoge";
public Csharp()
{
instanceVaribale = "foo";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment