不工作我有調試我的C#代碼在Visual Studio 2015年條件斷點在Visual Studio 2015年
我想添加一個簡單的表達成一個斷點,
所以我添加hierarchyRelation != null
作爲條件的問題。這是我正在調試的方法的局部變量,它存在。
然而,在運行時出現以下錯誤
「爲斷點條件未能執行。條件是 ‘hierarchyRelation!= NULL’。返回的錯誤是」斷點 條件必須評估的布爾運算」,點擊OK停止在 這個斷點。
實際上,病情更爲複雜,但這是能重現問題最簡單的情況。我想變,和甚至比較性能這個變量和它總是失敗相同。
如果我嘗試一個恆定的條件,如1 != 2
或1 = 1
它工作正常。有什麼問題嗎?我發現的最接近的相關問題是this,但它在vb code
。其解決方案是直接在代碼中添加調試方法。雖然我可以這樣做,但我想知道爲什麼這不起作用。
方法代碼
private HierarchyNodeDto GetNodeTreeThatContainsText<TRollup, TLeaf, THierarchyRelation>(HierarchyNodeDto root, string text, PreFilter preFilter, Func<TLeaf, bool> leafContainsTextFunc, bool parentContainsText) where TRollup: HierarchyNodeDto where TLeaf: HierarchyNodeDto {
dynamic rootNode = root as TRollup;
if (rootNode != null) {
if (rootNode.Nodes == null) {
return null;
}
var childNodesWithText = new List<THierarchyRelation>();
foreach (var hierarchyRelation in rootNode.Nodes) {
var isLeaf = hierarchyRelation.Node.GetType() == typeof(TransactionTypeHierarchyLeafDto) || hierarchyRelation.Node.GetType() == typeof(AccountHierarchyLeafDto);
if (!isLeaf && hierarchyRelation.Node.Name != null && hierarchyRelation.Node.Name.ToLower().Contains(text) && preFilter != PreFilter.Leafs) {
childNodesWithText.Add(hierarchyRelation);
continue;
}
var subtreeThatContainsText = this.GetNodeTreeThatContainsText<TRollup, TLeaf, THierarchyRelation>(hierarchyRelation.Node, text, preFilter, leafContainsTextFunc, rootNode.Name.ToLower().Contains(text));
if (subtreeThatContainsText == null) {
continue;
}
hierarchyRelation.Node = subtreeThatContainsText;
childNodesWithText.Add(hierarchyRelation);
}
rootNode.Nodes = childNodesWithText;
if (rootNode.Nodes.Count > 0 || (rootNode.Name.ToLower().Contains(text) && preFilter != PreFilter.Leafs)) {
return rootNode;
}
return null;
}
var rootLeaf = root as TLeaf;
return rootLeaf != null && ((leafContainsTextFunc.Invoke(rootLeaf) && preFilter != PreFilter.Nodes) || (parentContainsText && preFilter != PreFilter.Leafs)) ? rootLeaf : null;
}
我加入斷點在第一線的foreach
VS2015調試器確實有相當多的錯誤,但是當我嘗試它時,這看起來沒有什麼問題。確保安裝了更新,至少達到更新2.可能的解決方法是避免使用工具>選項>調試>常規,「使用託管兼容模式」和「使用傳統C#和VB.NET表達式評估程序」的錯誤。 –
我已經安裝了版本14.0.25431.01更新3.將嘗試檢查兼容模式 –