odiseh
odiseh

Reputation: 26517

Best Practices for winforms communications?

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

Answers (1)

Liviu Mandras
Liviu Mandras

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

Related Questions