IDebugArrayObject2::GetBaseIndices
擷取每個索引在陣列中指定的維度數目的基底的索引 (下限)。
HRESULT GetBaseIndices (
DWORD dwRank,
DWORD* dwIndices
);
int GetBaseIndices (
uint dwRank,
out uint[] dwIndices
);
參數
dwRank
[in]陣列的維度 (陣序規範) 數目。dwIndices
[] out陣列基底索引 (下限)。
傳回值
如果成功的話,會傳回S_OK。 否則,會傳回錯誤碼。
備註
例如,這個函式會傳回 5 以下 C# 程式碼所建立的陣列:
int[] lengths = { 12 };
int[] lowerbounds = { 5 };
Array.CreateInstance(typeof(int), lengths, lowerbounds);