Use a control developed in .NET 2.0 in 1.0/1.1?

B

Brian Schwartz

Hi all,

I'm developing a control in C# using the .NET 2.0 framework. The control
makes use of generics, such as this event declaration:
public event EventHandler<StatusNotificationEventArgs>
StatusNotification;

Will a control using these 2.0 features be usable in older versions of
Visual Studio? For example, since the original C# .NET did not support
generics, will a developer be able to use the syntax necessary to hook to
the above event?
TestCtl1.StatusNotification += new
EventHandler<GenericsTest.StatusNotificationEventArgs>(TestCtl1_StatusNotification);

Thanks,
Brian
 
B

Brian Schwartz

Is anyone still using the .NET Framework v1.0 or 1.1 and would be willing to
try it out? I can attach a simple control to test with...

Thanks,
Brian
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top