Example #1
0
 public void Apply(StringEnumerator other)
 {
     this.str        = other.str;
     this.Index      = other.Index;
     this.HasContent = other.HasContent;
     this.Enumerator = (CharEnumerator)other.Enumerator.Clone();
 }
Example #2
0
 public StringEnumerator(StringEnumerator other)
 {
     Apply(other);
 }