Exemplo n.º 1
0
 public bool Equals(StringSegment other)
 {
     return(Equals(this, other));
 }
Exemplo n.º 2
0
 public StringSegEnumerator(StringSegment segment)
 {
     seg = segment;
 }
Exemplo n.º 3
0
 public static bool IsNullOrEmpty(StringSegment segment)
 {
     return(segment == null || segment.FullString == null || segment.Length == 0);
 }