Skip to content

Instantly share code, notes, and snippets.

@aggieben
Created July 9, 2009 20:14
Show Gist options
  • Save aggieben/143962 to your computer and use it in GitHub Desktop.
Save aggieben/143962 to your computer and use it in GitHub Desktop.
type FieldValue<'a when 'a : (static member Parse: string -> 'a)>(arg:string) =
let value = 'a.Parse(arg)
member m.Value = value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment