CheckedListBox和带有索引的已检查项目列表

apo*_*pse 5 c# checkedlistbox winforms

CheckedListBox喜欢这样的:

:'''''''''''''''/\
: [ ] item1     ||
: [x] item2     ||
: [ ] item3     ##
: [ ] item4     ||
: [x] item5     ||
L...............\/
Run Code Online (Sandbox Code Playgroud)

现在我想提取已检查项目的索引:

int[] indexes = ExtractCheckedIndexes (myCheckedListBox);
Run Code Online (Sandbox Code Playgroud)

现在索引应该有2个元素= {1,4}.
怎么做到这一点?