--- trunk/RomCheater/ObjectBinder.cs 2012/06/05 15:03:03 313 +++ trunk/RomCheater/ObjectBinder.cs 2012/06/05 15:17:41 314 @@ -10,13 +10,13 @@ namespace RomCheater /// </summary> public class ObjectBinder { - /// <summary> - /// Binds an object to a specific type - /// </summary> - /// <typeparam name="T">The destination object type</typeparam> - /// <param name="source">The source object type (object)</param> - /// <returns>A bound type</returns> - public static void Bind<T>(object source, out T destination) where T : class { Bind<object, T>(source, out destination); } + ///// <summary> + ///// Binds an object to a specific type + ///// </summary> + ///// <typeparam name="T">The destination object type</typeparam> + ///// <param name="source">The source object type (object)</param> + ///// <returns>A bound type</returns> + //public static void Bind<T>(object source, out T destination) where T : class { Bind<object, T>(source, out destination); } /// <summary> /// Bind an object of a specific type to another specific type /// </summary> |