views:

341

answers:

2

I'm working on making a complex object designer compliant and was going to utilize the ArrayEditor component... Needless to say, I don't have it... MSDN says it comes from .NET 1.1 which I most certainly do have and then some. Any ideas?

A: 

Hmm. Bit more googling resolved the matter.

http://www.csharpfriends.com/Forums/ShowPost.aspx?PostID=45253

Apparently, ArrayEditor resides in System.Design.dll, not System.dll which provides access to System.ComponentModel.Design. :/

Berdon Magnus
+1  A: 

It's in the System.ComponentModel.Design namespace of the System.Design dll.

kek444