I added System.Data.DataSetExtensions.dll to unity's plugins folder.
And I found it appear in the reference of 'assembly-csharp'.
But I still can't "using" it.
How do I use it?
Thanks.
CodePudding user response:
There is no namespace named System.Data.DataSetExtensions
, the assembly contains extenion methods, you just need call them with data objects.
An example:
DataTable dt;
foreach(var row in dt.AsEnumerable())
....