TestService.cs 498 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace XdCxRhDW.WebApi.Service
  7. {
  8. /// <summary>
  9. /// 测试Service
  10. /// </summary>
  11. public class TestService
  12. {
  13. /// <summary>
  14. ///
  15. /// </summary>
  16. public TestService()
  17. {
  18. int code = this.GetHashCode();
  19. }
  20. public void Test()
  21. {
  22. int code = this.GetHashCode();
  23. }
  24. }
  25. }