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.Runtime.CompilerServices; | |
| static class Program { | |
| class Symbol { | |
| public readonly string DebugName; | |
| public Symbol([CallerMemberName] string? debugName = null) => DebugName = debugName ?? string.Empty; | |
| } | |
| static readonly Symbol TheSymbol = new(); // TheSymbol.DebugName is "TheSymbol"! | |
| } |
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
| git tag -d "tag_name" | |
| git push --delete origin "tag_name" |
OlderNewer