What F# language and syntax features are required to implement a fundamentally object-oriented WPF custom control?
Tag Archives: guidattribute fsharp
F# – A little gotcha with GuidAttribute
Be careful when using the [<Guid("...")>] attribute on your COM-visible classes in F#. If you mistakenly use the curly-bracket delimited format for the GUID, regasm will silently, yes, silently, fail to add any CLSID entries for your class. That means it will be cocreatable by the prog ID, but not the CLSID. Ouch.
No doubt this will be [...]
