예제 #1
0
		public static Project Load(string path)
		{
			ProjectReader reader = new ProjectReader(path);

			try
			{
				return reader.ReadProject();
			}
			catch (System.Xml.XmlException exception)
			{
				string format = string.Format("Error in XML Document line {0}, position {1}.",
					exception.LineNumber,exception.LinePosition);
				throw new Exception(format,exception);
			}
			finally { reader.Close(); }
		}