Aspose.Words.Examples.CSharp.Loading_Saving.LoadTxt.Run C# (CSharp) Метод

Run() публичный статический Метод

public static Run ( ) : void
Результат void
        public static void Run()
        {
            // ExStart:LoadTxt
            // The path to the documents directory.
            string dataDir = RunExamples.GetDataDir_LoadingAndSaving();
            
            // The encoding of the text file is automatically detected.
            Document doc = new Document(dataDir + "LoadTxt.txt");

            // Save as any Aspose.Words supported format, such as DOCX.  
            dataDir = dataDir + "LoadTxt_out.docx";
            doc.Save(dataDir);
            // ExEnd:LoadTxt
            Console.WriteLine("\nText document loaded successfully.\nFile saved at " + dataDir);
        }
    }
LoadTxt