I would like to remove the domain/computer information from a login id in C#. So, I would like to make either \"Domain\\me\" or \"Domain\\me\" just \"me\". I could always chec
string theString = "domain\\me"; theString = theString.Split(new char[] { '\\' })[theString.Split(new char[] { '\\' }).Length - 1];