Re: [Nant-users] proper format for a collection of strings in custom task

2004-09-20 Thread Gert Driesen
ay, September 21, 2004 2:18 AM Subject: RE: [Nant-users] proper format for a collection of strings in custom task It turns out that I forgot to do a lot! I first needed to create a class derived from Element: [ElementName("pattern")] public class Pattern : Element { // ... } Then I

RE: [Nant-users] proper format for a collection of strings in custom task

2004-09-20 Thread Castro, Edwin Gabriel (Firing Systems Engr.)
It turns out that I forgot to do a lot! I first needed to create a class derived from Element:   [ElementName(“pattern”)] public class Pattern : Element {     // … }   Then I needed to create a specialized Collection:   [Serializable()] public class PatternCollection : CollectionB