0

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?

Austin Hanson
  • 21,820
  • 6
  • 35
  • 41

2 Answers2

4

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

Kenan E. K.
  • 13,955
  • 3
  • 43
  • 48
0

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. :/

Austin Hanson
  • 21,820
  • 6
  • 35
  • 41