本文整理汇总了C#中MultiDimensionalArray.Insert方法的典型用法代码示例。如果您正苦于以下问题:C# MultiDimensionalArray.Insert方法的具体用法?C# MultiDimensionalArray.Insert怎么用?C# MultiDimensionalArray.Insert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MultiDimensionalArray
的用法示例。
在下文中一共展示了MultiDimensionalArray.Insert方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: UnsubscribePropertyChanged
public void UnsubscribePropertyChanged()
{
var testNotifyPropertyChangedObject = new TestNotifyPropertyChangedObject();
IMultiDimensionalArray<TestNotifyPropertyChangedObject> array =
new MultiDimensionalArray<TestNotifyPropertyChangedObject>();
//remove the item from the array
array.Insert(0, testNotifyPropertyChangedObject);
TestHelper.AssertPropertyChangedIsFired((INotifyPropertyChanged)array, 1, testNotifyPropertyChangedObject.FireChanged);
array.Remove(testNotifyPropertyChangedObject);
TestHelper.AssertPropertyChangedIsFired((INotifyPropertyChanged)array, 0, testNotifyPropertyChangedObject.FireChanged);
//reinsert & replace
array.Insert(0,testNotifyPropertyChangedObject);
array[0] = new TestNotifyPropertyChangedObject {Name = "new"};
TestHelper.AssertPropertyChangedIsFired((INotifyPropertyChanged)array, 0, testNotifyPropertyChangedObject.FireChanged);
//removeat
array.Insert(0, testNotifyPropertyChangedObject);
array.RemoveAt(0);
TestHelper.AssertPropertyChangedIsFired((INotifyPropertyChanged)array, 0, testNotifyPropertyChangedObject.FireChanged);
}
示例2: ReadOnlyInsert
public void ReadOnlyInsert()
{
var array = new MultiDimensionalArray(true, false, 1, new int[1]);
array.Insert(0, 2);
}
示例3: BubblePropertyChangedOfInsertObject2
public void BubblePropertyChangedOfInsertObject2()
{
var testNotifyPropertyChangedObject = new TestNotifyPropertyChangedObject();
var array = new MultiDimensionalArray<TestNotifyPropertyChangedObject>
{
IsAutoSorted = false
};
array.Insert(0, testNotifyPropertyChangedObject);
TestHelper.AssertPropertyChangedIsFired((INotifyPropertyChanged)array, 1, testNotifyPropertyChangedObject.FireChanged);
}
示例4: UpdateMinMax
public void UpdateMinMax()
{
var array = new MultiDimensionalArray<double>();
Assert.IsNull(array.MinValue);
Assert.IsNull(array.MaxValue);
//action! change the array
array.Add(0.0d);
//assert min max got updated
Assert.AreEqual(0.0d,array.MinValue);
Assert.AreEqual(0.0d, array.MaxValue);
//make sure we got insert covered
array.Insert(1,1.0d);
Assert.AreEqual(1.0d, array.MaxValue);
}