 | JVMBridgeBaseDispose(Boolean) Method |
Implements the pattern described in https://learn.microsoft.com/en-en/dotnet/standard/garbage-collection/implementing-dispose
Namespace: MASES.JCOBridge.C2JBridgeAssembly: C2JBridge (in C2JBridge.dll) Version: 2.6.4.250922-152ba6ff9edce5bce8e7bf5a86e1098f7e200363
Syntaxprotected virtual void Dispose(
bool disposing
)
Protected Overridable Sub Dispose (
disposing As Boolean
)
Parameters
- disposing Boolean
- The disposing parameter is a bool that indicates whether the method call comes from a Dispose method (its value is ) or from a finalizer (its value is )
See Also