C# 基础学习之 :ArrayList 取值

2022/6/11 1:22:44

本文主要是介绍C# 基础学习之 :ArrayList 取值,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

由于ArrayList是泛型,其类型不确定,所以无法直接读取其中的元素数据, 应该先将ArrayList数据值进行强制转换然后再读取。例如使用库读取二维码,由于使用的是库,ArrayList类型不确定

需要进行强制转换:

 

static void Main (string[] args) 
       {
            Mat src = new Mat (@"E:\Apriltags\TAG36H11\tag36h11_0.png", ImreadModes.Color);
            Apriltag ap = new Apriltag ("canny", true, "tag36h11");
            var result = ap.detect (src);
            TagDetection[] newDate = new TagDetection[result.Count];
            for (int i = 0; i < result.Count; i++)
            {
                newDate[i] = (TagDetection) result[i];
                Console.WriteLine("id: " + newDate[i].id);
            }
            Console.ReadKey();
        }

 



这篇关于C# 基础学习之 :ArrayList 取值的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程