反射调用方法 返回自定义List列表,如何进行
1个回答
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Dynamic;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
var list = Enumerable.Range(0, 5).Select(x => new { ID = x, Name = "Name" + x.ToString() }).ToList();
object obj = list;
var itor = obj.GetType().GetMethods().Where(x => x.Name == "GetEnumerator").First().Invoke(obj, new object[] { }) as System.Collections.IEnumerator;
while (itor.MoveNext())
{
object current = itor.Current;
string Name = current.GetType().GetProperties().Where(x => x.Name == "Name").First().GetValue(current, new object[] { }).ToString();
Console.WriteLine(Name);
}
}
}
}
TableDI
2024-07-18 广告
2024-07-18 广告
当我们谈到Python与Excel的拆分时,通常指的是使用Python的库来读取Excel文件中的数据,然后根据某种逻辑(如按行、按列、按特定值等)将数据拆分成多个部分或输出到新的Excel文件中。上海悉息信息科技有限公司在处理这类任务时,...
点击进入详情页
本回答由TableDI提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询