Mass Issue BPM (data directive) Error Help

When using a “using” statement/clause

using (var massIssue ← with this
massIssue.Dispose(); <–this is not needed

using (var txScope ← same here
txScope.Dispose();

1 Like

Interesting! I always thought you needed to call Dispose() to end the Using() pretext. Does the Using() pretext basically dispose of the object once it reaches the closing bracket?

Yep.

1 Like

Haha-- this is awesome. Thank you so much.

1 Like