Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
A Using
statement specifies a resource of a type that does not implement the IDisposable interface.
The purpose of a Using
block is to guarantee the disposal of a system resource when exiting the block. To satisfy this purpose, the resource must expose the Dispose method implemented from IDisposable.
Error ID: BC36010
To correct this error
- Remove the resource from the resource list of the
Using
statement, or replace it with a resource that implements IDisposable.
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.