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

◆ this[string s]

object? System.Net.PathList.this[string s]
getsetpackage

Definition at line 40 of file PathList.cs.

41 {
42 get
43 {
44 lock (SyncRoot)
45 {
46 return m_list[s];
47 }
48 }
49 set
50 {
51 lock (SyncRoot)
52 {
53 m_list[s] = value;
54 }
55 }
56 }
readonly SortedList m_list
Definition PathList.cs:34