MCPcopy Create free account
hub / github.com/Squirrel/Squirrel.Windows / Insert

Method Insert

src/Update/Mono.Options/Options.cs:276–276  ·  view source on GitHub ↗
(int index, object value)

Source from the content-addressed store, hash-verified

274 bool IList.Contains (object value) {return (values as IList).Contains (value);}
275 int IList.IndexOf (object value) {return (values as IList).IndexOf (value);}
276 void IList.Insert (int index, object value) {(values as IList).Insert (index, value);}
277 void IList.Remove (object value) {(values as IList).Remove (value);}
278 void IList.RemoveAt (int index) {(values as IList).RemoveAt (index);}
279 bool IList.IsFixedSize {get {return false;}}

Callers 1

ReleasifyMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected