Saved Bookmarks
| 1. |
What Is Static In F#? |
|
Answer» In F#, STATIC is a KEYWORD. It is used to make static FIELD or static METHOD. Static is not the PART of object. It has its own memory space to store static data. It is used to share common properties among objects. In F#, static is a keyword. It is used to make static field or static method. Static is not the part of object. It has its own memory space to store static data. It is used to share common properties among objects. |
|