Esempio n. 1
0
 public unsafe InlineVariable(InlineVariableType Type, ref byte *Buffer)
 {
     this.Type = Type;
     ReadFrom(ref Buffer);
 }
Esempio n. 2
0
 public InlineVariable(InlineVariableType Type, byte[] Buffer, int StartIndex = 0)
 {
     this.Type = Type;
     ReadFrom(Buffer, StartIndex);
 }
Esempio n. 3
0
 public InlineVariable(InlineVariableType Type, object Data)
 {
     this.Type = Type;
     this.Data = Data;
 }
Esempio n. 4
0
 public unsafe InlineVariable(InlineVariableType Type, ref byte* Buffer)
 {
     this.Type = Type;
     ReadFrom(ref Buffer);
 }
Esempio n. 5
0
 public InlineVariable(InlineVariableType Type, byte[] Buffer, int StartIndex = 0)
 {
     this.Type = Type;
     ReadFrom(Buffer, StartIndex);
 }
Esempio n. 6
0
 public InlineVariable(InlineVariableType Type, object Data)
 {
     this.Type = Type;
     this.Data = Data;
 }