public class A { public int Property1 { get; set; } } static void Main(){ A aa = new A(); Type type = aa.GetType();//获取类型 System.Reflection.PropertyInfo propertyInfo = type.GetProperty("Property1"); propertyInfo.SetValue(aa, , null);//给对应属性赋值 in…
一个简单实用的php验证码类,分享出来 ,供大家参考. 代码如下: <?php /** @ php 验证码类 @ http://www.jbxue.com */ Class code { var $width =80; //图片的宽 var $hight =50; //图片的高 var $image; var $red =69; //图片的RGB颜色 var $green =188; //红 var $blue =105 ;//绿 var $pix =100 ;//蓝 var $pixcolor…