├── .gitignore ├── Directory.Build.props ├── Mono.Reflection.csproj ├── Mono.Reflection.nuspec ├── Mono.Reflection.sln ├── Mono.Reflection ├── AssemblyInfo.cs ├── BackingFieldResolver.cs ├── ByteBuffer.cs ├── Disassembler.cs ├── ILPattern.cs ├── Image.cs ├── Instruction.cs └── MethodBodyReader.cs ├── README.md ├── Test ├── .gitignore ├── Mono.Reflection.Tests.csproj ├── Mono.Reflection │ ├── AssemblyInfo.cs │ ├── BackingFieldResolverTest.cs │ ├── BaseReflectionTest.cs │ ├── DisassemblerTest.cs │ ├── Formatter.cs │ └── ImageTest.cs ├── libs │ └── nunit-2.6.2 │ │ ├── license.txt │ │ ├── nunit.core.dll │ │ ├── nunit.core.interfaces.dll │ │ └── nunit.framework.dll ├── target.dll └── target.il └── mono.snk /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Mono.Reflection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Mono.Reflection.csproj -------------------------------------------------------------------------------- /Mono.Reflection.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Mono.Reflection.nuspec -------------------------------------------------------------------------------- /Mono.Reflection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Mono.Reflection.sln -------------------------------------------------------------------------------- /Mono.Reflection/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Mono.Reflection/AssemblyInfo.cs -------------------------------------------------------------------------------- /Mono.Reflection/BackingFieldResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Mono.Reflection/BackingFieldResolver.cs -------------------------------------------------------------------------------- /Mono.Reflection/ByteBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Mono.Reflection/ByteBuffer.cs -------------------------------------------------------------------------------- /Mono.Reflection/Disassembler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Mono.Reflection/Disassembler.cs -------------------------------------------------------------------------------- /Mono.Reflection/ILPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Mono.Reflection/ILPattern.cs -------------------------------------------------------------------------------- /Mono.Reflection/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Mono.Reflection/Image.cs -------------------------------------------------------------------------------- /Mono.Reflection/Instruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Mono.Reflection/Instruction.cs -------------------------------------------------------------------------------- /Mono.Reflection/MethodBodyReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Mono.Reflection/MethodBodyReader.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/README.md -------------------------------------------------------------------------------- /Test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Test/.gitignore -------------------------------------------------------------------------------- /Test/Mono.Reflection.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Test/Mono.Reflection.Tests.csproj -------------------------------------------------------------------------------- /Test/Mono.Reflection/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Test/Mono.Reflection/AssemblyInfo.cs -------------------------------------------------------------------------------- /Test/Mono.Reflection/BackingFieldResolverTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Test/Mono.Reflection/BackingFieldResolverTest.cs -------------------------------------------------------------------------------- /Test/Mono.Reflection/BaseReflectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Test/Mono.Reflection/BaseReflectionTest.cs -------------------------------------------------------------------------------- /Test/Mono.Reflection/DisassemblerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Test/Mono.Reflection/DisassemblerTest.cs -------------------------------------------------------------------------------- /Test/Mono.Reflection/Formatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Test/Mono.Reflection/Formatter.cs -------------------------------------------------------------------------------- /Test/Mono.Reflection/ImageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Test/Mono.Reflection/ImageTest.cs -------------------------------------------------------------------------------- /Test/libs/nunit-2.6.2/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Test/libs/nunit-2.6.2/license.txt -------------------------------------------------------------------------------- /Test/libs/nunit-2.6.2/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Test/libs/nunit-2.6.2/nunit.core.dll -------------------------------------------------------------------------------- /Test/libs/nunit-2.6.2/nunit.core.interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Test/libs/nunit-2.6.2/nunit.core.interfaces.dll -------------------------------------------------------------------------------- /Test/libs/nunit-2.6.2/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Test/libs/nunit-2.6.2/nunit.framework.dll -------------------------------------------------------------------------------- /Test/target.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Test/target.dll -------------------------------------------------------------------------------- /Test/target.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/Test/target.il -------------------------------------------------------------------------------- /mono.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbevain/mono.reflection/HEAD/mono.snk --------------------------------------------------------------------------------