我是靠谱客的博主 活力白开水,最近开发中收集的这篇文章主要介绍C#映射类获取类中属性名称与属性的值,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Tool;
namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            People model = new People();
            model.PeopleName = "张三";
            model.PeopleAge = 18;
            model.PeopleAddress = "中国上海";
            foreach (PropertyInfo info in model.GetType().GetProperties())
            {
                string Name = info.Name;
                object value = info.GetValue(model, null);
                if (info.PropertyType.IsValueType || info.PropertyType.Name.StartsWith("String"))
                {
                    Console.WriteLine("字段属性名称: {0} => 字段属性值: {1}", Name, value.ToString());
                }
//info.SetValue(model, "设置遍历该字段的值", null);
            }
            Console.ReadKey();
        }
      
        public class People
        {
            public string PeopleName { get; set; }
            public int PeopleAge { get; set; }
            public string PeopleAddress { get; set; }
        }
    }
}

 

最后

以上就是活力白开水为你收集整理的C#映射类获取类中属性名称与属性的值的全部内容,希望文章能够帮你解决C#映射类获取类中属性名称与属性的值所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(56)

评论列表共有 0 条评论

立即
投稿
返回
顶部