Hi
As per the following MSDN link
http://msdn.microsoft.com/en-us/library/ms182146(v=vs.80).aspx
The method named UseTheSimplifiedClass has the following statement
ReplyData[] answer = new ReplyData[5];
The ReplyData class isnt an array or collection however the syntax is used as if it is?
Regards
Steven
Loading
Nattudurai EswaramurthyPosted Aug 14, 2012, 3:16 AM
Ur creating ReplyData class with 5 instances which are ReplyData[0], ReplyData [1], ReplyData [2]...
Hope this helps ... if so, select accept the answer
VulpesPosted Aug 14, 2012, 3:45 PM
Possibly, there were originally 5 elements in the enum but they then removed one for some reason but forgot to adjust the size of the arrays.
Guest UserPosted Aug 14, 2012, 2:25 PM
VulpesPosted Aug 13, 2012, 4:00 PM