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

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

1 Examples 7

19 Source : WebsiteDataSource.cs
with MIT License
from MMEnter

public static void Delete(long iD)
            {
                _websites.Remove(GetWebsite(iD));
                SaveAsync(_websites);
            }