你可以用
[Conditional("DEBUG")] [DebuggerStepThrough] protected void VerifyPropertyName(String propertyName) { if (TypeDescriptor.GetProperties(this)[propertyName] == null) Debug.Fail(String.Format("Invalid property name. Type: {0}, Name: {1}", GetType(), propertyName)); }
这个方法判断是否Debug
http://bbs.csdn.net/topics/390775057
这个是在C/C++下的吧, 我想问在.net下C#语言的用VS创建的windows forms application怎么来判断?
已经知道了, 谢谢!
已经解决了
#if DEBUG
。。。
#endif