Skip to content

Instantly share code, notes, and snippets.

@JefClaes
Created October 7, 2013 09:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JefClaes/6864840 to your computer and use it in GitHub Desktop.
Save JefClaes/6864840 to your computer and use it in GitHub Desktop.
Constants and comments add so much value, couldn't live without them
public class Constants
{
/// <summary>
/// String containing the value "normal"
/// </summary>
public const string NORMAL_FOLDER = "normal";
/// <summary>
/// String containing the value "backup"
/// </summary>
public const string BACKUP_FOLDER = "backup";
}
@kristofclaes
Copy link

// TODO: See how we can get this working.
public class Privates
{
    /// <summary>
    /// String containing the value "private".
    /// </summary>
    private const string PRIVATE_FOLDER = "private";

    /// <summary>
    /// String containing the value "private".
    /// </summary>
    private const string SHARE_FOLDER = "shared";
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment