Total rows that we can add to datatable

后端 未结 2 1092
别那么骄傲
别那么骄傲 2021-01-18 19:09

I wants to know whether there is any limit for number of rows that we can add to datatable. I am doing this in C# and .NET 2005. Actually my application is reading large tex

相关标签:
2条回答
  • 2021-01-18 19:45

    The maximum number of rows that a DataTable can store is 16,777,216

    DataTable Class

    0 讨论(0)
  • 2021-01-18 19:47

    Try google next time!

    The maximum number of rows that a DataTable can store is 16,777,216.

    Found on http://msdn.microsoft.com/en-us/library/system.data.datatable.aspx

    0 讨论(0)
提交回复
热议问题