AppHarbor.Util.GetCollaboratorType C# (CSharp) Méthode

GetCollaboratorType() public static méthode

public static GetCollaboratorType ( CollaboratorType collaboratorType ) : string
collaboratorType CollaboratorType
Résultat string
        public static string GetCollaboratorType(CollaboratorType collaboratorType)
        {
            var name = Enum.GetName(typeof(CollaboratorType), collaboratorType)
                .ToLower();
            return name;
        }
    }