using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TouchSocket.Core { /// /// 一个成员访问接口 /// public interface IMemberAccessor { /// /// 获取指定成员的值 /// /// /// /// object GetValue(object instance, string memberName); /// ///设置指定成员的值 /// /// /// /// void SetValue(object instance, string memberName, object newValue); } }