Skip to content

Instantly share code, notes, and snippets.

@wtuts
Created June 21, 2014 20:46
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 wtuts/aafd6bcdf123881b3f6e to your computer and use it in GitHub Desktop.
Save wtuts/aafd6bcdf123881b3f6e to your computer and use it in GitHub Desktop.
Trail version implementation
//Variable used to indicate whether app is in trial state or not.
private static bool _isTrial = true;
public bool IsTrial
{
get
{
return _isTrial;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment