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

◆ this[int record]

object System.Data.DataColumn.this[int record]
getsetpackage

Definition at line 841 of file DataColumn.cs.

842 {
843 get
844 {
845 return _storage.Get(record);
846 }
847 set
848 {
849 try
850 {
852 }
853 catch (Exception ex)
854 {
855 ExceptionBuilder.TraceExceptionForCapture(ex);
856 throw ExceptionBuilder.SetFailed(value, this, DataType, ex);
857 }
859 {
861 }
862 if (Computed)
863 {
864 DataRow dataRow = GetDataRow(record);
865 if (dataRow != null)
866 {
868 }
869 }
870 }
871 }
void SetCurrentAndIncrement(object value)
object Get(int recordNo)
void Set(int recordNo, object value)
virtual bool IsNull(int recordNo)
DataRow GetDataRow(int index)
AutoIncrementValue AutoInc