using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using System.Linq.Expressions;
namespace Sheng.Winform.Controls.Kernal
{
    /// 
    /// 
    /// 
    public interface IMethodInvoker
    {
        /// 
        /// 
        /// 
        /// 
        /// 
        /// 
        object Invoke(object instance, params object[] parameters);
    }
    /// 
    /// 
    /// 
    public class MethodInvoker : IMethodInvoker
    {
        private readonly Func