DataColumnMappingCollection.Clear Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes all DataColumnMapping objects from the collection.
public:
virtual void Clear();
public void Clear ();
abstract member Clear : unit -> unit
override this.Clear : unit -> unit
Public Sub Clear ()
Implements
Examples
The following example exports the collection to an array of DataColumnMapping objects. It then clears the collection, and returns true
if the parameters are no longer persisting. This example assumes that a DataColumnMappingCollection collection has been created.
public bool PushIntoArray()
{
// ...
// create mappings
// ...
DataColumnMapping[] columns = new DataColumnMapping[0];
mappings.CopyTo(columns, 0);
mappings.Clear();
return true;
}
Public Function PushIntoArray() As Boolean
' ...
' create mappings
' ...
Dim columns As DataColumnMapping()
mappings.CopyTo(columns, 0)
mappings.Clear()
PushIntoArray = True
End Function
Applies to
See also
Vertu í samstarfi við okkur á GitHub
Heimildina fyrir þetta efni er að finna á GitHub, þar sem þú getur líka búið til og farið yfir vandamál og sameinað beiðnir. Frekari upplýsingar er að finna í framlagshandbók okkar.