Skip to content

Commit e5915b3

Browse files
authored
Update docs/data-tools/bind-objects-in-visual-studio.md
1 parent be1c8f4 commit e5915b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/data-tools/bind-objects-in-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ The following example shows how to loop through the rows in a data table, and po
7676

7777
You can create collection classes for your objects, or use the typed collections that are automatically provided by the [BindingSource component](/dotnet/framework/winforms/controls/bindingsource-component).
7878

79-
When you're-creating a custom collection class for objects, we suggest that you inherit from <xref:System.ComponentModel.BindingList%601>. This generic class provides functionality to administer your collection, as well as the ability to raise events that send notifications to the data-binding infrastructure in Windows Forms.
79+
When you're creating a custom collection class for objects, we suggest that you inherit from <xref:System.ComponentModel.BindingList%601>. This generic class provides functionality to administer your collection, as well as the ability to raise events that send notifications to the data-binding infrastructure in Windows Forms.
8080

8181
The automatically generated collection in the <xref:System.Windows.Forms.BindingSource> uses a <xref:System.ComponentModel.BindingList%601> for its typed collection. If your application does not require additional functionality, you can maintain your collection within the <xref:System.Windows.Forms.BindingSource>. For more information, see the <xref:System.Windows.Forms.BindingSource.List%2A> property of the <xref:System.Windows.Forms.BindingSource> class.
8282

0 commit comments

Comments
 (0)