Exemple #1
0
        /// <summary>Summarize information about the <paramref name="graph"/>.</summary>
        public static string Info(this GraphProto graph)
        {
            var writer = new StringWriter();

            graph.Info(writer);
            return(writer.ToString());
        }