将 python 中的 stored()[:10] 函数转换为 .net 语法 (pythonnet)

convert stored()[:10] function in python to .net syntax (pythonnet)

我有 python 脚本,我尝试使用 .net 中的 pythonnet 重写它。这但是我混淆了如何将 python 中的这一行转换为 .net?

contours = sorted(contours, key = cv2.contourArea, reverse = True)[:10]

使用 System.Linq;

var sorted = contours
  .OrderByDescending(c => c.ContourArea)
  .Take(10);