GetFloat() public method

Get float value from byte array from the current position and then increments the position.
public GetFloat ( ) : float
return float
Esempio n. 1
0
 private static void GetFloat32(XmlNode node, GXDLMSXmlSettings s)
 {
     GXByteBuffer bb = new GXByteBuffer();
     bb.SetHexString(GetValue(node, s));
     GXCommon.SetData(s.settings, s.data, DataType.Float32, bb.GetFloat());
 }