property | value |
---|---|
IDE | Visual Studio |
Language | C# |
Title | ObservableCollection<T> class |
Shortcut | c_ |
Description | class derived from ObservableCollection<T> |
Snippet Types | Expansion |
Namespaces |
System.Collections.Generic System.Collections.ObjectModel |
Placeholders
Identifier | Tooltip | Default Value | Editable | Function | Type Name |
---|---|---|---|---|---|
modifier | Modifier(s) | public | yes | ||
name | Type name | Collection | yes | ||
type | Type | object | yes |
Code
public class Collection : ObservableCollection<object> {
public Collection() {
}
public Collection(IEnumerable<object> collection) : base(collection) {
}
public Collection(IList<object> list) : base(list) {
}
}