PERWAPI.DebugLocalSig.SigBytes C# (CSharp) Méthode

SigBytes() private méthode

private SigBytes ( ) : byte[]
Résultat byte[]
        internal byte[] SigBytes()
        {
            byte[] b = new byte[loc.Length + 1];
            b[0] = LocalSigByte;
            System.Array.Copy(loc, 0, b, 1, loc.Length);
            return b;
        }