Horje
c# get property using string Code Example
c# get property using string
 public static object GetPropValue(object src, string propName)
 {
     return src.GetType().GetProperty(propName).GetValue(src, null);
 }




Csharp

Related
convert int to uint C# Code Example convert int to uint C# Code Example
fluentassertions force exceptions Code Example fluentassertions force exceptions Code Example
void on collision enter 2d Code Example void on collision enter 2d Code Example
c# get the last item in a list Code Example c# get the last item in a list Code Example
how to copy last element in list c# Code Example how to copy last element in list c# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13