Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@sergey-tihon
Created February 25, 2016 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sergey-tihon/f1671dc6bcebded916c5 to your computer and use it in GitHub Desktop.
Save sergey-tihon/f1671dc6bcebded916c5 to your computer and use it in GitHub Desktop.
type BaseProvidedType() =
static let mutable _host = ""
static member Host
with get() = _host
and set(value) = _host <- value
type ProvidedType() = inherit BaseProvidedType()
ProvidedType.Host <- "1"
BaseProvidedType.Host // = "1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment