Save() public method

public Save ( ) : void
return void
Beispiel #1
0
        public static Solution Create(string location, string name, bool save = true)
        {
            var result = new Solution();

            result.Name             = name;
            result.CurrentDirectory = location + Platform.DirectorySeperator;

            if (save)
            {
                result.Save();
            }

            return(result);
        }
Beispiel #2
0
        public static Solution Create(string location, string name, bool save = true)
        {
            var result = new Solution();

            result.CurrentDirectory = location + Platform.DirectorySeperator;

            result.Location = Path.Combine(result.CurrentDirectory, name + "." + Extension);

            if (save)
            {
                result.Save();
            }

            return(result);
        }
Beispiel #3
0
		public static Solution Create(string location, string name, bool save = true)
		{
			var result = new Solution();

			result.Name = name;
			result.CurrentDirectory = location + Platform.DirectorySeperator;

            if (save)
            {
                result.Save();
            }

			return result;
		}