AppHarbor.Util.GetCollaboratorType C# (CSharp) 메소드

GetCollaboratorType() 공개 정적인 메소드

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