1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace XdCxRhDW.WebApi.Service
- {
- /// <summary>
- /// 测试Service
- /// </summary>
- public class TestService
- {
- /// <summary>
- ///
- /// </summary>
- public TestService()
- {
- int code = this.GetHashCode();
- }
- /// <summary>
- /// 测试
- /// </summary>
- public void Test()
- {
- int code = this.GetHashCode();
- }
- }
- }
|