Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DataRowBuilder.cs
Go to the documentation of this file.
1namespace System.Data;
2
3public sealed class DataRowBuilder
4{
5 internal readonly DataTable _table;
6
7 internal int _record;
8
9 internal DataRowBuilder(DataTable table, int record)
10 {
11 _table = table;
12 _record = record;
13 }
14}
DataRowBuilder(DataTable table, int record)
readonly DataTable _table