PERWAPI.ConstantBinding.GetSig C# (CSharp) Méthode

GetSig() public méthode

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