I'm having an issue with the way a DisplayName
is shown when getting the name of a computer user. Currently I use
public static string fullName = UserPrincipal.Current.DisplayName;
which returns "LastName, FirstName (Department)".
I need to have them displayed in the format of "FirstName LastName".
Is there a recommended way to do this?