What is the advantage of using
_books.RowChanged +=new DataRowChangeEventHandler(_books_RowChanged);
which VS automatically inserts, vs. using
_books.RowChanged += _books_RowChanged;
which seems to me to be both shorter and more efficient.
There is no difference except that second form is less verbose. They both do the same exact thing.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With