Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
というフィールドを持つ構造体がありますtype
type
F# でアクセスするにはどうすればよいですか?
c#
struct A { int type; }
f#
let a = A() let myThing = a.type //error because type is a reserved keyword
typeのフィールドにアクセスするにはどうすればよいAですか?
A
type静的フィールドのようにアクセスしています。まず、次のインスタンスが必要ですA。
let a = A() let x = a.``type``
あなたはそれを修飾するためにダブルバックティックを使用することができますA.``type``。
A.``type``