.Net Overview Flashcards
Learn C# terminology
How do you find .Net?
.Net is built into the Windows O/S
What is .Net?
A framework used to write applications; like a mini O/S on top of Windows
Can apps be written on A Mac?
No. Apps must be written on a Windows O/S…which has the .Net framework built-in.
Who built .Net and when?
Microsoft built .Net in 2002
Why was .Net built?
- To manage code…or do garbage collection
- Multi-language support
- ???
What is the file extension for a C# file?
.cs
What is the file extension for a Visual Basic file?
.vb
What is a program compiled into?
CIL
CIL?
Common Intermediate Language
a.k.a. MSIL Microsoft Intermediate Language
What was CIL originally named, but didn’t stick?
MSIL Microsoft Intermediate Language
What does CIL do?
Create .exe files along with .dll files
DLL?
Dynamic Link Library
What is a dll file?
***a library of code used across multiple programs. I.e. Windows Office menus
JIT?
Just in Time compiler
What does the JIT do?
Compiles code or builds code into CLR