using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Linq.Expressions;
using System.Reflection;
namespace Sheng.Winform.Controls.Kernal
{
///
///
///
public interface IPropertyAccessor
{
///
///
///
///
///
object GetValue(object instance);
///
///
///
///
///
void SetValue(object instance, object value);
}
///
///
///
public class PropertyAccessor : IPropertyAccessor
{
private Func