PreferencesStore.IsEmpty Property

Definition

Gets a value indicating whether the preference store is empty.

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

Property Value

true if the preference store is empty; otherwise, false.

Examples

The following example writes the value of the IsEmpty property to the trace listener.

PreferencesStore store = MyPrefStore;
Trace.WriteLine("IsEmpty : " + store.IsEmpty.ToString());

Applies to