zoukankan      html  css  js  c++  java
  • 不用继承接口,一样可以把一个没有继承接口的类来实例化接口

    public interface IName 
        {
            int Age { get; set; }
            string Name { get; set; }
        }
      
        public class Person 
        {
            public int Age{get;set;}
            public string Name { get; set; }
            public Person()
            { }
            public Person(string name,int age)
            {
                Name = name;
                Age = age;
            }
        }
      
        public class EmptyEntity : IName
        {
            public string Name { get; set; }
            public int Age { get; set; }
        }
      
        public class ClassToInterface
        {
            /// <summary>
            /// 
            /// </summary>
            /// <typeparam name="T"></typeparam>
            /// <typeparam name="TResult">it implements the interface.</typeparam>
            /// <returns></returns>
            public static IName ConvertClassToInterface<T>(T obj)
            {
                IName entity=new EmptyEntity();
                PropertyInfo[] descProperties = typeof(IName).GetProperties();
                Type type = obj.GetType();
                foreach(PropertyInfo propertyInfo in descProperties)
                {
                    propertyInfo.SetValue(entity,type.GetProperty(propertyInfo.Name).GetValue(obj, null), null);
                }
                Console.WriteLine("Result:{0}={1}",entity.Name,entity.Age);
                return entity;
            }
      
        }
  • 相关阅读:
    Linux命令:cp (copy)复制文件或目录
    使用 robots.txt 文件阻止或删除网页说明
    ecshop优化修改sitemap.xml到根目录
    我虚拟机上装的CentOS系统显示的ip配置是127.0.0.1,请问如何解决?
    Servlet/JSP vs. ASP.NET MVC
    Ubuntu Linux 上安装Apache的过程
    Ubuntu Linux 上安装Eclipse的过程
    sudo的意义
    Dependency Injection
    Ubuntu Linux 上安装TomCat的过程
  • 原文地址:https://www.cnblogs.com/hongjiumu/p/2774729.html
Copyright © 2011-2022 走看看