StorytellerDocGen.Samples.SampleCache.Find C# (CSharp) Method

Find() public method

public Find ( string name ) : Sample
name string
return Sample
        public Sample Find(string name)
        {
            return _snippets.ContainsKey(name) ? _snippets[name] : null;
        }