clone this repository to learn about the stuff covered about C# during IE322 class.
Following topics are covered.
- first item
- second item
function add(num1, num2)
{
}
Click to see more!
## More awesome tips!
- item 1
- item 2
classDiagram
class Animal {
+name: string
+age: int
+makeSound(): void
}
class Dog {
+breed: string
+bark(): void
}
class Cat {
+color: string
+meow(): void
}
Animal <|-- Dog
Animal <|-- Cat
sequenceDiagram
actor Alice
actor Bob
Alice->>Bob: Hi Bob
Bob->>Alice: Hi Alice