Guest User

Untitled

a guest
Feb 19th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. Dim paramInfo = prop.GetIndexParameters
  2. If paramInfo.Count > 0 Then Continue For
  3.  
  4. PropertyInfo property = .....
  5. ParameterInfo[] ps = property.GetIndexParameters();
  6. if (ps.Count() > 0)
  7. {
  8. var propValue = property.GetValue(obj, null);
  9. ....
  10. }
Add Comment
Please, Sign In to add comment