System.Collections.Generic.Dictionary.Remove(TypedIndex)

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

1 Examples 7

19 Source : PhysicsSystem.cs
with MIT License
from generatives

public void RemoveShape(TypedIndex shapeIndex)
        {
            Simulation.Shapes.Remove(shapeIndex);
            _shapeContexts.Remove(shapeIndex);
        }