top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to Get the Property value using reflection in C# ?

0 votes
236 views
How to Get the Property value using reflection in C# ?
posted May 14, 2016 by Sathyasree

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.DirectoryServices.AccountManagement;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Reflection;
namespace AbundantCode
{
 internal class Program
 {
  // How to Get the Property value using reflection in C# ?
  private static void Main(string[] args)
  {
   Employee emp = new Employee();
   emp.Name = "AC Employee";
   string data = GetPropertyValue(emp, "Name").ToString();
   Console.WriteLine(data);
   Console.ReadKey();
  }
  //Function to get the Property Value
  public static object GetPropertyValue(object SourceData, string propName)
  {
   return SourceData.GetType().GetProperty(propName).GetValue(SourceData, null);
  }
 }
 public class Employee
 {
  public string Name { get; set; }
 }
}
answer May 14, 2016 by Shivaranjini
...