Skip to content

Instantly share code, notes, and snippets.

Created June 19, 2013 13:32
Show Gist options
  • Save anonymous/5814356 to your computer and use it in GitHub Desktop.
Save anonymous/5814356 to your computer and use it in GitHub Desktop.
namespace System
{
public class Object
{
}
public struct Byte
{
}
public struct Int16
{
}
public struct Int32
{
}
public struct Int64
{
}
public struct Single
{
}
public struct Double
{
}
public struct Char
{
}
public struct Boolean
{
}
public struct SByte
{
}
public struct UInt16 { }
public struct UInt32 { }
public struct UInt64 { }
public struct IntPtr { }
public struct UIntPtr { }
public class String {}
public class Delegate {}
public class MulticastDelegate {}
public class Array {}
public class Exception {}
public class Type {}
public class ValueType {}
public class Enum {}
public class Attribute {}
public class ParamArrayAttribute : Attribute {}
public struct RuntimeTypeHandle { }
public struct RuntimeFieldHandle { }
public interface IDisposable {}
public struct Void { }
}
namespace System.Collections
{
public interface IEnumerable
{
}
public interface IEnumerator {}
}
namespace System.Reflection
{
public class DefaultMemberAttribute : Attribute
{
}
}
namespace System.Runtime.InteropServices
{
public class OutAttribute : Attribute
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment