I have created simple c# example which uses barriers and I have thrown an exception inside one of functions and I'm getting unexpected result
phase 1 of DoWork1
phase 2 of DoWork2
phase 3 of DoWork3
Current phase 0
phase 2 of DoWork3
phase 2 of DoWork1
phase 3 of DoWork2
//so far everything is fine, lets throw an exception now
DoWork1 canceled
phase3 of DoWorn1
//end
now as You can see in Code I have thrown an exception in DoWork1 method and I expected that all 3 method will handle exception, but only first one does, second problem is that only first method prints "phase 3 bla bla" and I expected all 3 of them to print it to console. Could Someone explain me why does this happen
Code is a bit long but most of it is just copy paste