Expand|Select|Wrap|Line Numbers
- static int Main(string[] args)
- {
- ClientVarDataSet vds = new ClientVarDataSet();
- vds.XML = "";
- vds.AddField("x", 3); //"x" field name and 3 field type
- vds.AddField("y", 3);
- vds.Insert();
- vds.set_FieldValues("x", 1);
- vds.set_FieldValues("y", 2);
- Console.WriteLine(vds.XML);
- return 0;
- }
---------------------------
Test.vshost.exe - Application Error
---------------------------
The instruction at "0x03f62f8c" referenced memory at "0x04022ae8". The memory could not be "read".
Click on OK to terminate the program
---------------------------
OK
---------------------------
and when I press OK button i got one more Run time error,
---------------------------
Error
---------------------------
Runtime error 216 at 00002F8C
---------------------------
OK
---------------------------
Can any one help me in this regard whether it is memory leak or string buffer size is exceeding??
Regards
Kamil