Assuming that this has a valid reason (and I doubt it does), I'd use:
bool b = (x = y) ? true : true; // assignment & invariant condition intended
This shows we're discarding the value, and will be optimised away by any compiler. The comment is to mitigate the confusion of anyone reading the code.
If x and y are not bools, a method such as:
bool ignoreArgumentReturnTrue<T>(T v) { return true; }
should be optimised appropriately by the JITter. This has the advantage of being self-documenting, but both such techniques would end up on TheDailyWtf, I guarantee.
Wow, unpopular. Is there a problem with this answer, or is it just because (obviously) this code shouldn't be used in a real project? The fact that ints and similar cannot be cast to bools is a conscious decision for C#, and I think it's helpful to explore and appreciate the implications. The code above would compile on C++, Perl, Javascript, for example. Doesn't everyone play around with correctness when starting a new language?