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

◆ Next

NameValuePair System.Data.Common.NameValuePair.Next
getsetpackage

Definition at line 17 of file NameValuePair.cs.

18 {
19 get
20 {
21 return _next;
22 }
23 set
24 {
25 if (_next != null || value == null)
26 {
27 throw ADP.InternalError(ADP.InternalErrorCode.NameValuePairNext);
28 }
29 _next = value;
30 }
31 }