Class SwiftObservableArray<TValue>.ElementChangedEventArgs<T>
- Namespace
- SwiftCollections.Observable
- Assembly
- SwiftCollections.dll
Provides details about a changed element, including its index and new value.
public class SwiftObservableArray<TValue>.ElementChangedEventArgs<T> : EventArgs
Type Parameters
T
- Inheritance
-
SwiftObservableArray<TValue>.ElementChangedEventArgs<T>
- Inherited Members
Properties
Index
The index of the changed element.
public int Index { get; }
Property Value
NewValue
The new value of the changed element.
public T NewValue { get; }
Property Value
- T