using System.Collections.Generic;
public static void Main()
TEMP_STRUCT tempStruct = new TEMP_STRUCT();
List<TEMP_STRUCT> tempStructList = new List<TEMP_STRUCT>();
tempStructList.Add(tempStruct);
Console.WriteLine("{0}, {1}", tempStruct.GetHashCode().ToString(), tempStruct.GetHashCode().ToString());
if (tempStructList[0].Equals(tempStruct))
Console.WriteLine("Same");