I have a struct that has a field called type
How do i access it in F#?
c#
struct A {
int type;
}
f#
let a = A()
let myThing = a.type //error because type is a reserved keyword
How do i access the type field of A?
|
|
|
You're accessing
|
||||
|
|