Skip to content

Instantly share code, notes, and snippets.

@christiannagel
Last active August 27, 2017 09:29
Show Gist options
  • Save christiannagel/22f6fee5e0db133ebb5968100f326300 to your computer and use it in GitHub Desktop.
Save christiannagel/22f6fee5e0db133ebb5968100f326300 to your computer and use it in GitHub Desktop.
const string values with nameof
public class ColumnNames
{
public const string LastUpdated = nameof(LastUpdated);
public const string IsDeleted = nameof(IsDeleted);
public const string BookId = nameof(BookId);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment