Hi,
I wanted to abandon operation set if any exception happens with Try-Catch approach. To handle this I wanted to use following approach:
using (var disposableOperationSet = <code>)
{
// working with OperationSet
// if exception is thrown, then disposableOperationSet is correctly disposed of
}
Do anyone has exapmle of it? How to implement it?