F#:实现函数名与关键字begin相同的接口

发布于 2024-09-26 07:49:59 字数 174 浏览 2 评论 0原文

我正在尝试实现 IVector 接口,它是 Microsoft.VisualC.StlClr 命名空间的一部分。它有一个成员函数begin()。如果我尝试实现该接口,那么它会抱怨“对象表达式中出现意外的关键字“开始””。

这是因为 begin 是一个关键字,而我无法实现具有该名称的成员函数吗?

B.

I am trying to implement the IVector interface which is part of the Microsoft.VisualC.StlClr namespace. It has a member function begin(). If I try to implement the interface then it complains about "unexpected keyword 'begin' in object expression".

Is this because begin is a keyword and I can't implement a member function with that name?

B.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风尘浪孓 2024-10-03 07:49:59

你可以尝试将它包裹成反引号。 IVector 接口太大,无法将其作为示例实现,因此示例会更小 - 下面的代码编译时没有任何错误。

// C#
public interface ITest
{
    void begin();
}

// F#
type Test() = 
    interface UStatic.ITest with
        member this.``begin``() = ()

you can try to wrap it into backticks. IVector inteface is too big to implement it as sample, so example will be smaller - the code below compiles without any errors.

// C#
public interface ITest
{
    void begin();
}

// F#
type Test() = 
    interface UStatic.ITest with
        member this.``begin``() = ()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文