Ejemplo n.º 1
0
 public TangleKey(ushort key)
     : this(ImmutableBufferPool.GetBytes(key), typeof(ushort))
 {
 }
Ejemplo n.º 2
0
 public TangleKey(string key)
     : this(ImmutableBufferPool.GetBytes(key, Encoding.UTF8), typeof(string))
 {
 }
Ejemplo n.º 3
0
 public TangleKey(byte key)
     : this(ImmutableBufferPool.GetBytes(key), typeof(byte))
 {
 }
Ejemplo n.º 4
0
 public TangleKey(long key)
     : this(ImmutableBufferPool.GetBytes(key), typeof(long))
 {
 }