private static void PrintMethod(MethodDefinition methodDefinition, Gtk.TextView textView) { textView.Buffer.Clear(); var builder = new CallGraphBuilder(methodDefinition); CallGraph callGraph = builder.Create(5); textView.Buffer.Text = callGraph.ToString(); }