C# Fundamentals Flashcards
Namespace
Container which hold classes
Assembly (DLL or Exe)
Container which hold Namespaces or A single unit of deployment of .NET applications
Application
Container which hold one or multiple Assembly
VS - Solution
Can have one or more projects shown in solution explorer.
VS - Solution explorer
View - Solution Explorer
VS-using
“using” is to call different namespace so we can use their classes
VS-System
All basic utility classes and parametere type
VS-System.Collections.Generic
List Collections and So on
VS-Linq
Work with Data
VS-Text
text and coding and stuff like that
VS-System.Threading.Tasks
build multithreaded applications
Main
Method or Function Entry point to application when we run the application CLR run the inside code in Main Method (Main is case sensative)
Method ( )
Has input and output, inside parenthesis is input and called paramters or argument (they are optional).
void
nothing or return type is null just contains some code that’s it.
Console
Is a class read data from console and write data to it. it has bunch of methods.