Skip to content

Instantly share code, notes, and snippets.

@yemrekeskin
Created August 19, 2013 12:21
Show Gist options
  • Save yemrekeskin/6268540 to your computer and use it in GitHub Desktop.
Save yemrekeskin/6268540 to your computer and use it in GitHub Desktop.
use single static class for project's internal constants
public static class Constants
{
public const string DefaultUserName = "DEFAULT_USER";
// MB
public const int MaxFileSize = 250;
// ms
public const int DbTimeout = 10000;
public const int CookieExpireTime = 1000;
public const string DefaultLogPath = @"C:\DAILY_LOGS";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment