Skip to content
#

intellisense

Here are 140 public repositories matching this topic...

fsharp
auduchinok
auduchinok commented Jul 8, 2022

Consider this F# code:

type I =
    abstract M: param: outref<int> -> unit

type T() =
    interface I with
        member this.M(param) = failwith "todo"

The param parameter is compiled as out parameter:

[CompilationMapping(SourceConstructFlags.ObjectType)]
[Serializable]
public interface I1
{
  void M(out int param);
}

[CompilationMapping(So

Improve this page

Add a description, image, and links to the intellisense topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the intellisense topic, visit your repo's landing page and select "manage topics."

Learn more