-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.txt
27 lines (14 loc) · 804 Bytes
/
notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# static means the object is not required to call the method
# abstract means the method is incomplete and cannot be called
Namespaces - help organize code and prevent naming conflicts.
it helps us call the certain code of lines in the file.
Public - makes classes and methods accessible from other
parts of the program.using public will allow user to access the code.
public means it is available to public.
Static - allows methods to be called without an instance
of the class. it is like constructor(__init__) in python ,
it is called automamtically when the class is called,
that means it doesnot require ant object to call the class.
Void - indicates that a method does not return a value
+++++++++++
http:/github.com/Sri-code23/C_SHARP/blob/master/logical_operators/Program.cs