StringHelper.cs 323 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace NetCore31BACNetTransfor
  5. {
  6. public static class StringHelper
  7. {
  8. public static void AppendWithSplit<T>(this StringBuilder sb, T str)
  9. {
  10. sb.Append(str);
  11. sb.Append(Constants.Split);
  12. }
  13. }
  14. }