///<summary>
 /// Writes this HLAparameterHandleValuePair to the specified stream.
 ///</summary>
 ///<param name="writer"> the output stream to write to</param>
 ///<param name="obj"> the object to serialize</param>
 ///<exception cref="IOException"> if an error occurs</exception>
 public static void Serialize(HlaEncodingWriter writer, HLAparameterHandleValuePair obj)
 {
     writer.WriteHLAinteger64BE(obj.ParameterHandle);
     writer.WriteHLAopaqueData(obj.ParameterValue);
 }
 ///<summary>
 /// Writes this HLAparameterHandleValuePair to the specified stream.
 ///</summary>
 ///<param name="writer"> the output stream to write to</param>
 ///<param name="obj"> the object to serialize</param>
 ///<exception cref="IOException"> if an error occurs</exception>
 public static void Serialize(HlaEncodingWriter writer, HLAparameterHandleValuePair obj)
 {
     writer.WriteHLAinteger64BE(obj.ParameterHandle);
     writer.WriteHLAopaqueData(obj.ParameterValue);
 }