バージョン

CollectionChangeUndoUnit<T> コンストラクタ(ICollection<T>,T,T,Int32,String)

特定の項目の置換のために、新しい CollectionChangeUndoUnit<T> を初期化します。
シンタックス
'宣言
 
Public Function New( _
   ByVal collection As ICollection(Of T), _
   ByVal oldItem As T, _
   ByVal newItem As T, _
   ByVal index As Integer, _
   ByVal itemTypeDisplayName As String _
)
public CollectionChangeUndoUnit<T>( 
   ICollection<T> collection,
   T oldItem,
   T newItem,
   int index,
   string itemTypeDisplayName
)

パラメータ

collection
変更されたコレクション。
oldItem
削除/置換された項目。
newItem
oldItem に対する置換として追加された項目。
index
置換のインデックスでもある、置換された項目のインデックス。
itemTypeDisplayName
エンドユーザーに提示される通りのコレクション内の項目のタイプを表す文字列、またはタイプ名と項目の両方またはいずれか一方を使用するためには null。
例外
例外解説
System.ArgumentNullExceptioncollection は null であってはいけません。
System.ArgumentExceptioncollection は読み取り専用にできません。
参照