Exemplo n.º 1
0
        public static string AsString(AccessModifier scope)
        {
            var output = scope.ToString();

            if (scope == AccessModifier.PrivateProtected || scope == AccessModifier.ProtectedInternal)
            {
                output = Patcher.AddLowerUpperNeighboringSpaces(output);
            }

            return(output.ToLower());
        }