Ejemplo n.º 1
0
 public ConfigInfo(ConfigDataHandle handle, long length)
 {
     this.handle = handle;
     this.length = length;
 }
Ejemplo n.º 2
0
 public static ConfigDataHandle CreateFromOffset(this ConfigDataHandle handle, int offset)
 {
     return(new ConfigDataHandle {
         value = IntPtr.Add((IntPtr)handle.value, offset).ToPointer()
     });
 }