static void Main(string[] args) { Hash hashCall = new Hash(); hashCall.myHashResult(); //MyDictionary<T> dict = new MyDictionary<T>(); }
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)); } }