You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(!string.IsNullOrEmpty(parameter.PropertyName))returnproperties.FirstOrDefault( a =>a.Name.ToLowerInvariant()==parameter.PropertyName.ToLowerInvariant());
10
-
if(!string.IsNullOrEmpty(parameter.FullName))returnproperties.FirstOrDefault( a =>a.Name.ToLowerInvariant()==parameter.FullName.ToLowerInvariant());
10
+
if(!string.IsNullOrEmpty(parameter.FullName))returnproperties.FirstOrDefault( a =>a.Name.ToLowerInvariant()==parameter.FullName.ToLowerInvariant());
11
11
if(!string.IsNullOrEmpty(parameter.ShortName))returnproperties.FirstOrDefault( a =>a.Name.ToLowerInvariant()==parameter.ShortName.ToLowerInvariant());
12
12
13
13
returnnull;
@@ -34,12 +34,44 @@ public static bool SetPropertyValue<T> ( Type type, Dictionary<string, string> v
0 commit comments