CrewManifest.KerbalModel.NameExists C# (CSharp) Method

NameExists() private method

private NameExists ( ) : bool
return bool
        private bool NameExists()
        {
            if(IsNew || Kerbal.name != Name)
            {
                return KerbalCrewRoster.ExistsInRoster(Name);
            }

            return false;
        }