Accessing a namespace containing .base in its name from F#
Posted
by emaster70
on Stack Overflow
See other posts from Stack Overflow
or by emaster70
Published on 2010-05-02T21:02:50Z
Indexed on
2010/05/02
21:07 UTC
Read the original article
Hit count: 258
As the title says, I'm trying to use a class declared in a namespace which contains "base" in its name. Think of a situation like the following:
open Foo.base.Bar
In C# I'd just use @ before base but F# seems to ignore that and to think that @ is the infix operator used for list concatenation. Since the namespace belongs to a third-party library which I cannot modify, is there a way I can still access it from F#?
© Stack Overflow or respective owner