バージョン

Index(Int32,Int32,Int32) メソッド

start から end の均等な間隔のインデックスの Vector を返します。
シンタックス
'宣言
 
Public Overloads Shared Function Index( _
   ByVal start As Integer, _
   ByVal space As Integer, _
   ByVal end As Integer _
) As Vector
public static Vector Index( 
   int start,
   int space,
   int end
)

パラメータ

start
Vector の最初の要素。
space
要素間の間隔。
end
Vector の最後の要素の上界。

戻り値の型

均等な間隔の Vector。
例外
例外解説
System.ArgumentException 開始または終了が 0 未満の場合に発生します。
System.ArgumentExceptionspace が 0 に等しく、開始が終了と等しくない場合に発生します。
System.ArgumentException スペースが正数で開始が終了より大きい場合に発生します。
System.ArgumentException スペースが負数で開始が終了未満の場合に発生します。
参照