Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
269 views
in Technique[技术] by (71.8m points)

c# - Doing assignment in Break condition

While testing something, I had to replace string (many times!) while feeling lazy to stop debugger and write up my code. Instead I thought I can do this in Break condition to see if it works.

So the break condition looks like this:

(someString = someString.Replace(".xx.", ".yy.")) != ""

Which would evaluate to true every time.

But it doesn't do the assignment. Can someone explain why the condition is evaluated correctly, but assignment never happens?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You should do this in the Watch or Immediate windows instead. The purpose of the Break condition is to break when an expression is true, not to continuously change a real value.

It's quite a bizarre need IMHO.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...