property | value |
---|---|
IDE | Visual Studio |
Language | C# |
Title | Collection<T> class |
Shortcut | c_ |
Description | class derived from Collection<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 | Collection type name | Collection | yes | ||
type | Type | object | yes |
Code
public class Collection : Collection<object> {
public Collection() {
}
public Collection(IList<object> list) : base(list) {
}
}