Skip to content
This repository has been archived by the owner on Oct 7, 2022. It is now read-only.

hazzik/mono.reflection.core

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mono.Reflection

Mono.Reflection is an helper library to complement the System.Reflection and System.Reflection.Emit namespaces.

It works on both Mono >= 2.8 and .net >= 4.0.

API


public sealed class Image {
	public static bool IsAssembly (string fileName) {}
	public static bool IsAssembly (Stream stream) {}
}

Test whether a file is a managed assembly or not.


public static class BackingFieldResolver {
	public static FieldInfo GetBackingField (this PropertyInfo self) {}
}

Returns the field backing a property or throws an InvalidOperationException.


public static class Disassembler {
	public static IList<Instruction> GetInstructions (this MethodBase self) {}
}

Returns a read only collection of Instruction representing the IL method body or throws an ArgumentException if the method doesn't provide a body.


public class Instruction {
	public int Offset { get; }
	public OpCode OpCode { get; }
	public object Operand { get; }

	public Instruction Next { get; }
	public Instruction Previous { get; }
}

Represents an IL instruction.

About

Some useful reflection helpers, including an IL disassembler.

Resources

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

Languages

  • C# 100.0%