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

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

2 Examples 7

19 Source : WzDirectory.cs
with GNU General Public License v3.0
from izarooni

public void RemoveImage(WzImage image)
		{
            images.Remove(image);
            image.Parent = null;
		}

19 Source : WzDirectory.cs
with Mozilla Public License 2.0
from lastbattle

public void RemoveImage(WzImage image)
        {
            images.Remove(image);
            image.Parent = null;
        }