alireza amini
alireza amini

Reputation: 1742

How to clear the BindingList Comepeltly

i've fill the binding list

So i want to clear it as fastest way as it can

so i have the binding list that has at least 2000 items

what is the best way?

Upvotes: 2

Views: 2071

Answers (1)

tobiak777
tobiak777

Reputation: 3365

You should use :

myBindingList.Clear()

As mentionned in the documentation.

Upvotes: 2

Related Questions