Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
StringPair.cs
Go to the documentation of this file.
1namespace System.Xml.Xsl;
2
3internal struct StringPair
4{
5 private readonly string _left;
6
7 private readonly string _right;
8
9 public string Left => _left;
10
11 public string Right => _right;
12
13 public StringPair(string left, string right)
14 {
15 _left = left;
16 _right = right;
17 }
18}
readonly string _right
Definition StringPair.cs:7
StringPair(string left, string right)
Definition StringPair.cs:13
readonly string _left
Definition StringPair.cs:5