Aspose.Email.Examples.CSharp.Email.Outlook.ReadMapiNote.Run C# (CSharp) 메소드

Run() 공개 정적인 메소드

public static Run ( ) : void
리턴 void
        public static void Run()
        {
            // ExStart:ReadMapiNote
            // The path to the File directory.
            string dataDir = RunExamples.GetDataDir_Outlook();
            MapiMessage note = MapiMessage.FromFile(dataDir + "MapiNote.msg");
            MapiNote note2 = (MapiNote)note.ToMapiMessageItem();
            // ExEnd:ReadMapiNote
        }
    }
ReadMapiNote