コード例 #1
0
ファイル: ssEdExec.cs プロジェクト: collumww/ssconV3
 void CheckRange(ssText t, ssRange r)
 {
     if (!t.Contains(r))
     {
         throw new ssException("address range");
     }
 }
コード例 #2
0
ファイル: ssEdExec.cs プロジェクト: collumww/ssconV3
 void CheckRange(ssText t, int i)
 {
     if (!t.Contains(i))
     {
         throw new ssException("address range");
     }
 }