Reputation: 26517
I'm looking for some best practices for winforms communications in .NET . How 2 different winforms send and receive data in oop style?
Upvotes: 0
Views: 219
Reputation: 6617
As Cody said the question needs more details. Based on the only info you provided you can make use of simple events and pass information via custom EventArgs
derived classes.
Upvotes: 1