Do
using and goto
statements dispose objects if the code looks similar to this?
public T MyMethod(){
using(stream){
//do some work here
if(completed){
//do some work
goto next;
}
return something;
}
next:
//do another work here...
//is stream disposed?
}