Ejemplo n.º 1
0
        public static string ToString(ISource source)
        {
            var writer = new SourceWriter();

            source.Generate(writer);
            return(writer.ToString());
        }