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