CommaDelimitedStringCollection.IsModified Property

Definition

Gets a value that specifies whether the collection has been modified.

public:
 property bool IsModified { bool get(); };
public bool IsModified { get; }
member this.IsModified : bool
Public ReadOnly Property IsModified As Boolean

Property Value

true if the CommaDelimitedStringCollection has been modified; otherwise, false.

Examples

The following code example demonstrates how to use the IsModified property. This code example is part of a larger example provided for the CommaDelimitedStringCollection class overview.

// Call IsModified.
Console.WriteLine("IsModified: {0}",
  myStrCollection.IsModified);
' Call IsModified.
Console.WriteLine("IsModified: {0}", _
  myStrCollection.IsModified)

Remarks

The IsModified property is true after the Add, Clear, Insert, or Remove method has been called. Also, the IsModified property is true after the Item[] property is used to modify an element of the string collection.

Applies to