Skip to content

Instantly share code, notes, and snippets.

@pparadis
Created March 13, 2015 00:22
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 pparadis/4cfc177b865405723b0e to your computer and use it in GitHub Desktop.
Save pparadis/4cfc177b865405723b0e to your computer and use it in GitHub Desktop.
private static object _dataSet;
public static object DataSet
{
get
{
if (_dataSet == null)
{
var localObject = new object();
_dataSet = localObject;
}
return _dataSet;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment