From: jpbruyere Date: Wed, 3 Feb 2016 17:19:30 +0000 (+0100) Subject: Cast extention method for Type, used in binding resolution X-Git-Tag: 0.3~72 X-Git-Url: https://git.osiis.dedyn.io/?a=commitdiff_plain;h=9e09e0561baf7a898c308180d142cecea9e56b8f;p=jp%2Fcrow.git Cast extention method for Type, used in binding resolution --- diff --git a/src/ExtensionsMethods.cs b/src/ExtensionsMethods.cs index af756a78..19193e92 100644 --- a/src/ExtensionsMethods.cs +++ b/src/ExtensionsMethods.cs @@ -19,6 +19,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . using System; +using System.Linq.Expressions; namespace Crow { @@ -38,6 +39,18 @@ namespace Crow handler(sender, e); } } + /// + /// Type Extension method for Casting + /// + public static object Cast(this Type Type, object data) + { + var DataParam = Expression.Parameter(typeof(object), "data"); + var Body = Expression.Block(Expression.Convert(Expression.Convert(DataParam, data.GetType()), Type)); + + var Run = Expression.Lambda(Body, DataParam).Compile(); + var ret = Run.DynamicInvoke(data); + return ret; + } } } diff --git a/src/GraphicObjects/GraphicObject.cs b/src/GraphicObjects/GraphicObject.cs index 7fd0e1ca..8bbf67b0 100644 --- a/src/GraphicObjects/GraphicObject.cs +++ b/src/GraphicObjects/GraphicObject.cs @@ -986,7 +986,12 @@ namespace Crow }else targetValue = targetValue.ToString (); } - b.Source.Property.GetSetMethod ().Invoke (this, new object[] { targetValue }); + if (targetValue != null) + b.Source.Property.GetSetMethod ().Invoke + (this, new object[] { b.Source.Property.PropertyType.Cast(targetValue)}); + else + b.Source.Property.GetSetMethod ().Invoke + (this, new object[] { targetValue }); #endregion //if no dyn update, skip jump table