AH
Size: a a a
AH
I
I
AH
RM
AH
[<CompiledName("Using")>]
let using (resource : 'T when 'T 😆 System.IDisposable) action =
try action(resource)
finally match (box resource) with null -> () | _ -> resource.Dispose()AH
RM
RM
AH
AH
AH
VS
VS
open System.Text.Json
[<CLIMutable>]
type internal Test =
{
X: int
}
[<EntryPoint>]
let main argv =
let x = JsonSerializer.Deserialize<Test>("{\"X\": 1}")
0
VS
VS
I
I
VS
AH