} // Save internal static ConstantByteValueHandle AsHandle(ConstantByteValue record) { if (record == null) { return new ConstantByteValueHandle(0); } else { return record.Handle; } } // AsHandle
} // Write public static void Write(this NativeWriter writer, ConstantByteValue record) { if (record != null) writer.WriteUnsigned((uint)record.Handle.Offset); else writer.WriteUnsigned(0); } // Write