Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ DefaultView

DataView System.Data.DataTable.DefaultView
getinherited

Definition at line 339 of file DataTable.cs.

340 {
341 get
342 {
343 DataView dataView = _defaultView;
344 if (dataView == null)
345 {
346 if (_dataSet != null)
347 {
349 }
350 else
351 {
352 dataView = new DataView(this, locked: true);
353 dataView.SetIndex2("", DataViewRowState.CurrentRows, null, fireEvent: true);
354 }
356 if (dataView == null)
357 {
359 }
360 }
361 return dataView;
362 }
363 }
DataViewManager DefaultViewManager
Definition DataSet.cs:176
DataView CreateDataView(DataTable table)
static int CompareExchange(ref int location1, int value, int comparand)

Referenced by System.Data.DataTable.GetList().