
PublicInterface
By: a guest on
Sep 13th, 2010 | syntax:
OCaml | size: 0.23 KB | hits: 47 | expires: Never
module private MyCode =
let doSomething (func:int->int) =
func 2
type MyCodePublicInterface () =
member this.DoSomething (dotNetDelegate:System.Func<int, int>) =
MyCode.doSomething dotNetDelegate.Invoke