System.Collections.Generic.List.Remove(WikiPage)

Here are the examples of the csharp api System.Collections.Generic.List.Remove(WikiPage) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : WikiTestCache.cs
with GNU General Public License v3.0
from TASVideos

public void Remove(string key)
		{
			var page = PageCache.SingleOrDefault(p => p.PageName == key.Split('-').Last());
			if (page != null)
			{
				PageCache.Remove(page);
			}

			_cache.Remove(key);
		}