c# winform 读取图片列表

  PropertyInfo[] poroInfo = typeof(Resources).GetProperties(System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Static);
            poroInfo = poroInfo.Where(item => item.PropertyType == typeof(Bitmap)).ToArray();
            List<Bitmap> bmpList = poroInfo.Select<PropertyInfo, Bitmap>(item => (Bitmap)item.GetValue(item, null)).ToList();
上一篇:TensorFlow全新的数据读取方式:Dataset API入门教程


下一篇:【专访】【Spring常见问题汇总】【05】