Inserts an element into the collection at the specified index and marks it changed.

Namespace: BlogEngine.Core
Assembly:  BlogEngine.Core (in BlogEngine.Core.dll)
Version: 1.2.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
protected override void InsertItem(
	int index,
	T item
)
Protected Overrides Sub InsertItem ( _
	index As Integer, _
	item As T _
)
protected:
virtual void InsertItem (
	int index, 
	T item
) override

Parameters

index
Int32

[Missing <param> documentation for "index"]

item
T

[Missing <param> documentation for "item"]

See Also