T
Tim Johnson
This works:
DataSet x = getsomedata();
x.WriteXml("myfile.xml");
This doesn't:
DataSet x = getsomedata();
x.WriteXml("myfile.xml", XmlWriteMode.WriteSchema);
and it refers to the full function in the compiler's error message, as in:
'System.Data.DataSet.WriteXml(string, System.Data.XmlWriteMode)' is
inaccessible due to its protection level
Any ideas why the difference in the 2 calls?
--
Tim Johnson
High Point Software, Inc.
www.high-point.com
(503) 312-8625
DataSet x = getsomedata();
x.WriteXml("myfile.xml");
This doesn't:
DataSet x = getsomedata();
x.WriteXml("myfile.xml", XmlWriteMode.WriteSchema);
and it refers to the full function in the compiler's error message, as in:
'System.Data.DataSet.WriteXml(string, System.Data.XmlWriteMode)' is
inaccessible due to its protection level
Any ideas why the difference in the 2 calls?
--
Tim Johnson
High Point Software, Inc.
www.high-point.com
(503) 312-8625