hl3292

正确用法

 object a = pFeature.get_Value(fidIndex);
 long fidValue = Convert.ToInt64(a) ;

错误用法

object a = pFeature.get_Value(fidIndex);
 long fidValue = (long)a;

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-09-28
  • 2021-11-18
  • 2021-09-04
  • 2022-01-09
  • 2021-06-29
猜你喜欢
  • 2022-12-23
  • 2021-11-12
  • 2021-10-02
  • 2022-12-23
相关资源
相似解决方案