Is it possible to override the GetHashCode method for a string, int, int32 etc..
I dont want to create a new object or class and override it that away. I wonder if there was a way to override the type's method. Similar to an extension but not really.
string myString = "sometext";
myString.GetHashCode(); -- I want to override this method.