Skip to content

Instantly share code, notes, and snippets.

@Odepax
Created September 21, 2021 20:10
Show Gist options
  • Save Odepax/e1865266222ce759a0d2d8e37c9fe859 to your computer and use it in GitHub Desktop.
Save Odepax/e1865266222ce759a0d2d8e37c9fe859 to your computer and use it in GitHub Desktop.
CallerMemberName works on fields!
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"!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment