AsmResolver.Net.Msil.ExceptionHandler.GetPhysicalLength C# (CSharp) Method

GetPhysicalLength() public method

public GetPhysicalLength ( ) : uint
return uint
        public override uint GetPhysicalLength()
        {
            if (IsFat)
                return 7 * sizeof (uint);

            return 2 * sizeof (ushort) +
                   1 * sizeof (byte) +
                   1 * sizeof (ushort) +
                   1 * sizeof (byte) +
                   2 * sizeof (uint);
        }