Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ListenerPrefixEnumerator.cs
Go to the documentation of this file.
3
4namespace System.Net;
5
7{
8 private readonly IEnumerator _enumerator;
9
10 public string Current => (string)_enumerator.Current;
11
12 object IEnumerator.Current => _enumerator.Current;
13
18
19 public bool MoveNext()
20 {
21 return _enumerator.MoveNext();
22 }
23
24 public void Dispose()
25 {
26 }
27
29 {
31 }
32}