Exemple #1
0
        static void Main(string[] args)
        {
            Hash hashCall = new Hash();
            hashCall.myHashResult();
            //MyDictionary<T> dict = new MyDictionary<T>();

        }
Exemple #2
0
 public void myHashResult()
 { 
     Hash hashCall = new Hash();
     Console.WriteLine("please enter in info");
     string input = Console.ReadLine();
     var ss = new[] { input };
     foreach (var s in ss)
     {
         Console.WriteLine("{0} = {1}", s, hashCall.myHash(s));
     }
 }