ACAT.Applications.ACATTalk.Program.setProfileName C# (CSharp) Method

setProfileName() private static method

Sets the active profile name
private static setProfileName ( ) : void
return void
        private static void setProfileName()
        {
            ProfileManager.CurrentProfile = CoreGlobals.AppGlobalPreferences.CurrentProfile.Trim();
            if (String.IsNullOrEmpty(ProfileManager.CurrentProfile))
            {
                ProfileManager.CurrentProfile = ProfileManager.DefaultProfileName;
            }
        }