示例#1
0
        internal static string CreateLVTHtml(LeanValueTree tree)
        {
            VisionPresenter VP = new VisionPresenter();

            Directory.CreateDirectory("C:\\temp");
            return(VP.VisualizeToString(tree.Vision));
        }
示例#2
0
        public static string BuildTree(StreamReader file)
        {
            LeanValueTree newTree = ParseLVTData(file);

            return(CreateLVTHtml(newTree));
        }