SimilarString.cs 436 B

123456789101112131415161718
  1. //############################################################
  2. // https://github.com/yuzhengyang
  3. // author:yuzhengyang
  4. //############################################################
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Text;
  8. namespace Y.Utils.DataUtils.StringUtils
  9. {
  10. public static class SimilarString
  11. {
  12. public static int Simple()
  13. {
  14. return 100;
  15. }
  16. }
  17. }