AppHarbor.Util.GetCollaboratorType C# (CSharp) Method

GetCollaboratorType() public static method

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