📚
NoteHub
Home
School
College
About
Contact
Home
/
College
/
BCA
/
Semester 4
/
.Net Framework & C#
🪟 .Net Framework & C#
1. CLR & Base Class Library
Common Language Runtime, JIT Compiler, Garbage Collection.
using
System;
class
Program {
static void
Main() {
Console.WriteLine(
"Hello C#"
);
}
}
↑