摘要: C# 是一种面向对象的编程语言,但是通过反射机制,可以访问到类内部私有(即private)的成员和函数。using System.Reflection; 1 public static class DrawGraphics 2 { 3 private static Graphics drawRGB,drawDepth; 4 private static Size drawRGBSize,drawDepthSize; 5 public static void drawPicture(string name, Bitmap image) 6 { 7 Bindi... 阅读全文
posted @ 2012-10-17 22:57 wpjsolo 阅读(468) 评论(0) 推荐(0) 编辑