PERWAPI.ConstantBinding.GetSig C# (CSharp) Method

GetSig() public method

Get the type signature for this constant.
public GetSig ( ) : byte[]
return byte[]
        public byte[] GetSig()
        {
            MemoryStream str = new MemoryStream();
            _type.TypeSig(str);
            return str.ToArray();
        }