Skip to content

Instantly share code, notes, and snippets.

@Finglas
Created October 3, 2016 06:20
Show Gist options
  • Save Finglas/5a54e173296d81dcbdbfb8016f162150 to your computer and use it in GitHub Desktop.
Save Finglas/5a54e173296d81dcbdbfb8016f162150 to your computer and use it in GitHub Desktop.
Constant Object Anti Pattern
class Constants
{
public const int DaysInWeek = 7;
public const string DefaultDrive = "D";
public const string WelcomeText = "Hello";
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment