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
How's about:
string shortName = ResourceLoginName.Split('\\')[1]