Ok, I haven't programmed in C# before but I came upon this code and was wondering what it does. Now, I now that it just searches and find the first occurrence of "." and replaces it with "" but what exactly is in the ""? Would this just delete the period or is there a space character that replaces the "."? I'm trying to figure out how to transfer this method into Objective-C, but I need to know if the period is replaced by no characters or a space character.
someString.Replace(".", "")