Last active
March 28, 2017 07:59
-
-
Save nmcc/bd8eeec162daf062b350f10ef494fd79 to your computer and use it in GitHub Desktop.
Singleton .NET Core
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ImageStore | |
{ | |
private readonly IDictionary<string, byte[]> imagemMap = new Dictionary<string, byte[]>(); | |
public void AddImage(string name, byte[] imageContent) => | |
this.imagemMap.Add(name, imageContent); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment