Adds a String to the end of the IStringList.

Namespace: CodeSmith.CustomProperties
Assembly: CodeSmith.CustomProperties (in CodeSmith.CustomProperties.dll) Version: 6.0.0.0 (7.0.0.15127)

Syntax

C#
int Add(
	string value
)
Visual Basic
Function Add ( 
	value As String
) As Integer

Parameters

value
Type: System..::..String
The String object to be added to the end of the IStringList. This argument can be a null reference.

Return Value

Type: Int32
The IStringList index at which the value has been added.

Remarks

Please refer to Add(Object) for details.

Exceptions

ExceptionCondition
System..::..NotSupportedException

The IStringList is read-only.

-or-

The IStringList has a fixed size.

See Also