SharpGen/Transform/PrimitiveTypeCode.cs (23 lines of code) (raw):
namespace SharpGen.Transform
{
public enum PrimitiveTypeCode : byte
{
Void,
Int8,
UInt8,
Int16,
UInt16,
Int32,
UInt32,
Int64,
UInt64,
Float,
Double,
Boolean,
Char,
Decimal,
String,
IntPtr,
UIntPtr
}
}