Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Last active May 30, 2021 07:34
Show Gist options
  • Save ssukhpinder/d04e8e8427edf509f5b429813578d82b to your computer and use it in GitHub Desktop.
Save ssukhpinder/d04e8e8427edf509f5b429813578d82b to your computer and use it in GitHub Desktop.
static void Main(string[] args)
{
var response = SingletonExample.Instance;
Console.WriteLine(response);
var response1 = SingletonExample.Instance;
Console.WriteLine(response1);
Console.WriteLine(Object.Equals(response1, response));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment