Consider this:
let hank = "hank" let bill = "bill" printfn "%A" hank // for breakpoint
Now, if I set a conditional breakpoint in VS2015, the condition is "hank = bill" (assuming an F # expression), I get the following error:
The condition for the breakpoint failed. The condition was 'hank = bill'. Return error: 'The breakpoint condition must evaluate before the boolean operation'.
When the condition is "hank == bill" (maybe try a C # expression?), The error is:
The condition for the breakpoint failed. The condition was 'hank == bill'. An error was detected: "Runtime refused to evaluate the expression at this time.
source share