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
ทํางานร่วมกับเราใน GitHub
แหล่งที่มาสำหรับเนื้อหานี้สามารถพบได้บน GitHub ซึ่งคุณยังสามารถสร้างและตรวจสอบปัญหาและคำขอดึงข้อมูลได้ สำหรับข้อมูลเพิ่มเติม ให้ดูคู่มือผู้สนับสนุนของเรา