BitSharper.Sha256Hash.Sha256Hash C# (CSharp) Method

Sha256Hash() public method

Creates a Sha256Hash by decoding the given hex string. It must be 64 characters long.
public Sha256Hash ( string @string ) : System
@string string
return System
        public Sha256Hash(string @string)
        {
            Debug.Assert(@string.Length == 64);
            _bytes = Hex.Decode(@string);
        }

Same methods

Sha256Hash::Sha256Hash ( byte bytes ) : System