KeySizes.SkipSize 属性

定义

指定有效密钥大小之间的间隔。

public:
 property int SkipSize { int get(); };
public int SkipSize { get; }
member this.SkipSize : int
Public ReadOnly Property SkipSize As Integer

属性值

Int32

有效密钥大小之间的范围。

示例

以下代码演示如何检索属性 SkipSize 的使用。 此代码示例是为类提供的大型示例的 KeySizes 一部分。

int skipKeySize = firstKeySize->SkipSize;
int skipKeySize = firstKeySize.SkipSize;
Dim skipKeySize As Integer = firstKeySize.SkipSize

适用于