Struct Hex
  
  
  
  
  Assembly: cs.temp.dll.dll
  Syntax
  
    public struct Hex : IEquatable<Hex>
   
  Constructors
  
  
  
  
  Hex(Byte[])
  
  
  Declaration
  
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | Byte[] | 
        data | 
         | 
      
    
  
  Properties
  
  
  
  
  Data
  
  
  Declaration
  
    public byte[] Data { get; }
   
  Property Value
  
  Methods
  
  
  
  
  Equals(Hex)
  
  
  Declaration
  
    public bool Equals(Hex other)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | Hex | 
        other | 
         | 
      
    
  
  Returns
  
  
  
  
  FromString(String)
  
  
  Declaration
  
    public static Hex FromString(string s)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | String | 
        s | 
         | 
      
    
  
  Returns
  
  
  
  
  ToString()
  
  
  Declaration
  
    public override string ToString()
   
  Returns
  
  Overrides
  
  Operators
  
  
  
  
  Implicit(Hex to Byte[])
  
  
  Declaration
  
    public static implicit operator byte[](Hex hex)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | Hex | 
        hex | 
         | 
      
    
  
  Returns
  
  
  
  
  Implicit(Byte[] to Hex)
  
  
  Declaration
  
    public static implicit operator Hex(byte[] data)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | Byte[] | 
        data | 
         | 
      
    
  
  Returns