Created
November 25, 2021 21:52
-
-
Save kiwipiet/aaf0ff8d30ea8ad0c5f6434fb6d7ee92 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| public static class ListEx | |
| { | |
| public static void AddContent(this List<string> list, string content) | |
| { | |
| list.Add($"{DateTime.Now:O} - {content}"); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment