System.Security.Policy.Hash.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString() => base.ToString();
    }

Usage Example

Example #1
0
 public static void HashCallMethods()
 {
     Hash hash = new Hash(Reflection.Assembly.Load(new Reflection.AssemblyName("System.Reflection")));
     byte[] barr = hash.GenerateHash(Cryptography.SHA1.Create());
     string str = hash.ToString();
     hash = Hash.CreateMD5(new byte[1]);
     hash = Hash.CreateSHA1(new byte[1]);
 }