I recently used the ability to chain assignments like that in code golf, where the objective is to have as few characters as possible.
Before that I don't think that I have ever used it in C#, as it makes the code less readable. To understand the statement you have to read it from right to left, and that is not how you naturally read the code.
As Anders Rune Jensen mentions, you might want to emphasise that the values in the variables should be the same, but then you can just as well do that in two statements to make it clearer:
var1 = true;
var2 = var1;
If the actual generated code differs anything at all, the performance difference is none at all or too small to measure in normal circumstances.