C# is object oriented programming language.
C# is object oriented programming language.
The C# programming language was designed by Anders Hejlsberg from Microsoft in 2000.
OOPS is a programming approach which revolvs around the concept of "object".
Any entity in the system that can be defined as a set of properties and set of operations performed using entity's property set, is known as object.'
variables are the names of memory locations where we store data.
variable name is any combination of alphabet (a to z or A to Z), digit(0 to 9) and underscore (_).
local variable can declare and defineinside function of constructor block. It cannot access outside of function block.
global variable can declare out side of function block. global variable can acces any where in program, if it is public.
static variable can declare at the class level. No need to create an object to access static variable.
Keywords are reserved words, whose meaning is already known to the compiler.
abstract | as | base | bool | break | byte |
case | catch | char | checked | class | const |
continue | decimal | default | delegate | do | double |
else | enum | event | explicit | extern | false |
finally | fixed | float | for | foreach | goto |
if | implicit | in | int | interface | internal |
is | lock | long | namespace | new | null |
object | operator | out | override | params | private |
protected | public | readonly | ref | return | sbyte |
sealed | short | sizeof | stackalloc | static | string |
struct | switch | this | throw | true | try |
typeof | uint | ulong | unchecked | unsafe | ushort |
using | virtual | void | volatile | while | var |
comments are used to clarify something about the program in plain languagqe.
There are two types of comments in C#.