| Revision: | 2 |
| Committed: | Wed Feb 11 13:07:01 2026 UTC (8 weeks, 3 days ago) by figdor32 |
| File size: | 337 byte(s) |
| Log Message: | Initial check-in |
| # | Content |
|---|---|
| 1 | using System; |
| 2 | using System.Collections.Generic; |
| 3 | using System.Linq; |
| 4 | using System.Text; |
| 5 | using System.Threading.Tasks; |
| 6 | |
| 7 | namespace TELTest { |
| 8 | internal static class CompatExtensions { |
| 9 | public static void AppendLineRN(this StringBuilder sb, string line = "") { |
| 10 | sb.Append(line + "\r\n"); |
| 11 | } |
| 12 | } |
| 13 | } |