C# 的 #if DEBUG使用

DEBUG+Assert調試代碼還是不錯。 int i = 10; #if DEBUG             Debug.Assert(i < 9,"條件不成立");             WriteLine("DEBUG"); #else       WriteLine("Release"); #endif 在Debug和Release模式下會分別執行不同的代碼。 Debug Release
相關文章
相關標籤/搜索