-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Code_DisposedIf__1
andrewvk edited this page Mar 30, 2016
·
7 revisions
[This is preliminary documentation and is subject to change.]
Assertion for object disposal
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 1.0.0.0 (1.0.0.0)
C#
[AssertionMethodAttribute]
public static void DisposedIf<TDisposable>(
bool disposed,
[NotNullAttribute] TDisposable thisReference
)
where TDisposable : IDisposable
VB
<AssertionMethodAttribute>
Public Shared Sub DisposedIf(Of TDisposable As IDisposable) (
disposed As Boolean,
<NotNullAttribute> thisReference As TDisposable
)
F#
[<AssertionMethodAttribute>]
static member DisposedIf :
disposed : bool *
[<NotNullAttribute>] thisReference : 'TDisposable -> unit when 'TDisposable : IDisposable
- disposed
- Type: System.Boolean
[Missing documentation for "M:CodeJam.Code.DisposedIf1(System.Boolean,
0)"] - thisReference
- Type: TDisposable
[Missing documentation for "M:CodeJam.Code.DisposedIf1(System.Boolean,
0)"]
- TDisposable