C # Use reflection to get attributes and set attribute values,

Source: Internet
Author: User

C # Use reflection to get attributes and set attribute values,

/// <summary>

/// Obtain the attribute values in the class /// </summary> /// <param name="FieldName"></param> /// <param name="obj"></param> /// <returns></returns> public  string  GetModelValue( string  FieldName, object  obj) {      try      {          Type Ts = obj.GetType();          object  o = Ts.GetProperty(FieldName).GetValue(obj, null );          string  Value = Convert.ToString(o);          if  ( string .IsNullOrEmpty(Value)) return  null ;          return  Value;      }      catch      {          return  null ;      } }  /// <summary> /// Set the attribute values in the class /// </summary> /// <param name="FieldName"></param> /// <param name="obj"></param> /// <returns></returns> public  bool  SetModelValue( string  FieldName, string  Value, object  obj) {      try      {          Type Ts = obj.GetType();          object  v = Convert.ChangeType(Value, Ts.GetProperty(FieldName).PropertyType);          Ts.GetProperty(FieldName).SetValue(obj, v, null );          return  true ;      }      catch      {          return  false ;      } }

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.