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

◆ SimpleType

SimpleType? System.Data.DataColumn.SimpleType
getsetpackage

Definition at line 938 of file DataColumn.cs.

939 {
940 get
941 {
942 return _simpleType;
943 }
944 set
945 {
947 if (value != null && value.CanHaveMaxLength())
948 {
949 _maxLength = value.MaxLength;
950 }
951 }
952 }

Referenced by System.Data.DataColumn.Clone().