Pim Vendrig

Results 1 comments of Pim Vendrig

To convert from `DataSet` to `ArrayOfXElement` I am using the following method: ```cs public ArrayOfXElement DataSetToArrayOfXElement(DataSet dataSet) { if (dataSet == null) throw new ArgumentNullException(nameof(dataSet)); var arrayOfXElement = new ArrayOfXElement();...