예제 #1
0
 public NTRRemoteConnection()
 {
     this.PacketReceiverThread = new NTRPacketReceiverThread(this);
     try
     {
         this.ReleasesDocument = new XmlDocument();
         ReleasesDocument.Load(File.OpenRead(Path.GetTempPath() + "3dsreleases.xml"));
     }
     catch (Exception e)
     {
         this.ReleasesDocument = null;
     }
 }
 public NTRRemoteConnection()
 {
     this.PacketReceiverThread = new NTRPacketReceiverThread(this);
     try
     {
         this.ReleasesDocument = new XmlDocument();
         ReleasesDocument.Load(File.OpenRead(Path.GetTempPath() + "3dsreleases.xml"));
     }
     catch (Exception e)
     {
         Logger.Log(null, e);
         this.ReleasesDocument = null;
     }
 }