public void ClearData()
        {
            System.Reflection.PropertyInfo[] properties = this.GetType().GetProperties();
            foreach (System.Reflection.PropertyInfo property in properties)
            {
                if (property.PropertyType.FullName=="System.String")
                property.SetValue(this, "", null);
            }
        }

posted on 2013-09-12 11:29  万德源  阅读(330)  评论(0编辑  收藏  举报