Luna.userdataType.userdataType C# (CSharp) Метод

userdataType() публичный Метод

public userdataType ( byte src ) : System
src byte
Результат System
        public userdataType(byte[] src)
        {
            this.typeId = BitConverter.ToInt32(src, 0);
            this.objectId = BitConverter.ToInt32(src, 4);
            this.gc = BitConverter.ToBoolean(src, 8);
            this.has_env = BitConverter.ToBoolean(src, 9);
        }

Same methods

Luna.userdataType::userdataType ( int typeId, int objectId, bool gc, bool has_env ) : System
Luna.userdataType