Example #1
0
        GraphSettings GetGraphSettings()
        {
            GraphSettings gs = new GraphSettings();

            var fn = GraphSettingFileName();

            if (File.Exists(fn))
            {
                gs.Read(fn);
            }
            return(gs);
        }