Hi,
Whenever I attempt to place a squence within a struct, it gives a syntax error - is there any possible way to place a sequence within a struct?
["clr:generic:List"] sequence<string> StringSeq; // works
["clr:class"] struct Wrapper
{
["clr:generic:List"] sequence<string> StringSeq; // gives syntax error
string symbol;
};

Reply With Quote
