When comparing hard-coded Strings that the User will see but not modify/change, is the culture info important.
I would assume not, but I just want to be safe.
Example:
static void Main()
{
string hardString = "IAMHardCodei";
string hardString2 = "IamHardCodei";
//Compare hardString and hardString2, ignoring case,
//and then do stuff based on that result
}