Skip to content

Instantly share code, notes, and snippets.

@altbodhi
Created December 30, 2019 07:16
Show Gist options
  • Save altbodhi/d414973bc7b24ed940f55a94036b3ef4 to your computer and use it in GitHub Desktop.
Save altbodhi/d414973bc7b24ed940f55a94036b3ef4 to your computer and use it in GitHub Desktop.
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