Is it possible to redefine a C# keyword like int
to use Int64 instead of Int32?
If not, how can one do this? I want to have the flexibility to redefine the int I use, so later I could change it to int64 if I wanted, instead of going around to replace all the int values manually.