views:

141

answers:

2

Hi everybody! I wish to know if .Net-3.5 comes with a built-in List<string> or string[] TypeConverter or UITypeEditor so that I can edit this kind of property from a property grid.

+1  A: 

You can use [Editor("System.Windows.Forms.Design.StringArrayEditor, System.Design, [assembly version and public key token information here]", typeof(System.Drawing.Design.UITypeEditor))]

munissor
for sure it works with string[], I don't know if it works with List<string> but you can try..
munissor