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/201073fb19e61d382aa3 to your computer and use it in GitHub Desktop.
Save pparadis/201073fb19e61d382aa3 to your computer and use it in GitHub Desktop.
private static readonly Lazy<object> _duplicateDataSet = new Lazy<object>(() =>
{
var localObject = new object();
return localObject;
});
public static object DuplicateDataSet
{
get { return _duplicateDataSet.Value; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment