click below
click below
Normal Size Small Size show me how
Y1S2 Interactive #1
Week 1
| Term | Definition |
|---|---|
| RAM | Stack + Heap |
| Value types | Live on the stack |
| Inbuilt value | int, float, double, char, bool |
| User defined value | struts (data + methods) |
| True name int | System.Int32 |
| True name double | System.Double |
| True name float | System.Single |
| True name char | System.Char |
| True name boolean | System.Boolean |
| Pointer | (not the focus of this course) |
| Reference types | Live on the heap |
| Inbuilt reference | String, array, collections |
| User defined reference | class (data + method) |
| GUI | Graphical User Input |
| .NET | Rules and regulation |
| Abstract class | A restricted class that cannot be used to create objects (to access it, it must be inherited from another class). Typically the parent class |
| Namespace | All C# code must belong to a namespace (think of it as a folder) |