Aspose.Tasks.Examples.CSharp.WorkingWithProjects.CreatingReadingAndSaving.ReadProjectFiles.Run C# (CSharp) 메소드

Run() 공개 정적인 메소드

public static Run ( ) : void
리턴 void
        public static void Run()
        {
            // ExStart:ReadProjectFiles
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.FullName);        

            // Read existing project template file
            Project project = new Project(dataDir + "ReadProjectFiles.mpp");
            // ExEnd:ReadProjectFiles
        }
    }
ReadProjectFiles