I am working on reverse engineering, Now I have I condition line of while statement
while (!flag && \u0003\u001A\u0007.\u0001(this.\u0001, 0, false))
That it is meets these lines in IL Language
270 030B ldloc.0
271 030C brtrue.s 278 (0320) ret
272 030E ldarg.0
273 030F ldfld class [mscorlib]System.Threading.ManualResetEvent
'A.\u0015\u001f\u0003'::'\u0001'
274 0314 ldc.i4.0
275 0315 ldc.i4.0
276 0316 call bool 'A.\u0003\u001a\a'::'\u0001'(object, int32, bool)
277 031B brtrue 3 (0007) ldarg.0
I want to delete && \u0003\u001A\u0007.\u0001(this.\u0001, 0, false)
from IL statements, How can I do that?