Exemplo n.º 1
0
 void CheckRange(ssText t, ssRange r)
 {
     if (!t.Contains(r))
     {
         throw new ssException("address range");
     }
 }
Exemplo n.º 2
0
 void CheckRange(ssText t, int i)
 {
     if (!t.Contains(i))
     {
         throw new ssException("address range");
     }
 }