123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- using CommonLang.IO;
- using CommonLang.Xml;
- using CommonNetwork.Http;
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.IO;
- using System.Linq;
- using System.Windows.Forms;
- namespace CommonTest
- {
- public static class Test
- {
- public static bool TEST_XML = false;
- public static bool TEST_VLQ = false;
- public static bool TEST_MPQ = false;
- public static bool TEST_HTTP_CHUNK = true;
- public static void Execute()
- {
- if (TEST_HTTP_CHUNK)
- {
- var uil = new Uri("http://dl.sjcs.moreu.cn/tt/res_release/updates_etc/res_20161103182256.mpq.z");
- var data = WebClient.Get(uil);
- Console.WriteLine(data);
- }
- }
- }
- static class Program
- {
-
-
-
- [STAThread]
- static void Main()
- {
- Test.Execute();
-
- }
- }
- }
|