[This is preliminary documentation and is subject to change.]

Gets whether you can add items to the list using AddNew()()()().

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public override bool CanAddNew { get; }
Visual Basic
Public Overrides ReadOnly Property CanAddNew As Boolean
	Get
Visual C++
public:
virtual property bool CanAddNew {
	bool get () override;
}
F#
abstract CanAddNew : bool
override CanAddNew : bool
JScript
override function get CanAddNew () : boolean

Return Value

true if you can add items to the list using AddNew()()()(); otherwise, false. This impúlementation returns ture when type T has default constructor that can be used for automatic instance creation

Remarks

This member implements AllowNew

See Also