1234567891011121314151617181920212223 |
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using Server;
- using System;
- namespace TestCase
- {
- [TestClass]
- public class UnitTest1
- {
- [TestMethod]
- public void TestMethod1()
- {
- string a = "192.16.33.175";
- Console.WriteLine(a.Split(".".ToCharArray())[0]);
- G.logger.Info("AK97");
- }
- public void testc(byte[] a)
- {
- a[1] = 188;
- }
- }
- }
|