Exemplo n.º 1
0
        internal static string CreateLVTHtml(LeanValueTree tree)
        {
            VisionPresenter VP = new VisionPresenter();

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

            return(CreateLVTHtml(newTree));
        }