Created
December 30, 2019 07:16
-
-
Save altbodhi/d414973bc7b24ed940f55a94036b3ef4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open System | |
type Resource () = | |
interface IDisposable with | |
member it.Dispose() = | |
do printfn "Object %A Disposed" it | |
use r = Resource() | |
(r :> IDisposable).Dispose() | |
// error FS0039: Поле, конструктор или элемент "Dispose" не определены. | |
//r.Dispose() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment