If you were to define some extension [static, instance] methods, properties in an assembly written in F#, and then use that assembly in C#, would you see the defined extensions in C#?
If so, that would be so cool.
|
If you were to define some extension [static, instance] methods, properties in an assembly written in F#, and then use that assembly in C#, would you see the defined extensions in C#? If so, that would be so cool.
| |||||
feedback
|
This method could be used in C# only by adding the namespace (using using) to the file where it will be used.
Here is a link to the original blogpost. Answering question in comments "Extension Static Methods":
In F# you call it like so:
In C# you call it like so:
Now, give me my freaking medal! | |||||||
feedback
|
|
Despite my other answer, I did just try this with the F# CTP (on VS shell) and C# Express from my box at home (all free dev tools!), and this works: F#
C#
I was not aware you could do this; nifty. Credit to @alex. | |||||||
feedback
|
|
Per the language spec, section 10.7 "Type extensions": Optional extension members are syntactic sugar for static members. Uses of optional extension members elaborate to calls to static members with encoded names where the object is passed as the first argument. The encoding of names is not specified in this release of F# and is not compatible with C# encodings of C# extension members | |||||
feedback
|