Please enable JavaScript.
Coggle requires JavaScript to display documents.
C# From Week 2 - Coggle Diagram
C# From Week 2
how to read the diagram
-
-
-
:_ is the things to return(for constructors / methods)
It is the variable's datatype (for fields / Properties)
-
-
DateTime
-
DateTime aDate = new DateTime(2020,3,9);
-
-
-
-
Methods
-
ToString method
public override string ToString()
{
return "AccountNo: " + AccountNo +
"\tAccountName: " + AccountName +
"\tBalance: " + Balance;
}
-
List
-
variablename.Add(new ClassName(each variable according to how u listed it
------------------------------------------------in the class parameterized constructor))
-
Object
ClassName s1 = new ClassName(each variable according to how u listed it
------------------------------------------------in the class parameterized constructor)))
-
-