Exemplo n.º 1
0
 public UNValueDouble(double value)
 {
     _m_value = UNValue.EncryptDES(BitConverter.GetBytes(value));
 }
Exemplo n.º 2
0
 public UNValueDouble()
 {
     _m_value = UNValue.EncryptDES(BitConverter.GetBytes(0.0));
 }
Exemplo n.º 3
0
 public UNValueFloat(float value)
 {
     _m_value = UNValue.EncryptDES(BitConverter.GetBytes(value));
 }
Exemplo n.º 4
0
 public UNValueBool()
 {
     _m_value = UNValue.EncryptDES(BitConverter.GetBytes(false));
 }
Exemplo n.º 5
0
    private byte[] _m_value = new byte[4];//= BitConverter.GetBytes(0);

    public UNValueFloat()
    {
        _m_value = UNValue.EncryptDES(BitConverter.GetBytes(0f));
    }