using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RomCheater
{
///
/// A class that allows the binding of an object to another type
///
public class TypeBinder
{
/////
///// Binds an object to a specific type
/////
///// The destination object type
///// The source object type (object)
///// A bound type
//public static void Bind(object source, out T destination) where T : class { Bind