コード例 #1
0
ファイル: Conversation.cs プロジェクト: identifer/breeding
        static public Conversation CreateFromXML(string filePath)
        {
            IntPtr convPtr = ConversationAPI.CreateConversationFromXML(filePath);

            return((convPtr != IntPtr.Zero) ? (new Conversation(convPtr)) : null);
        }