Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 443 Bytes

02-introduction.md

File metadata and controls

27 lines (22 loc) · 443 Bytes

02 - Introduction to Object-oriented Design

A quick demo of using Mermaid to embed diagrams in markdown documents.

Flowcharts

graph TB
	A[Start] -.-> B(Process 1)
	A --> C[[Process 2]]
	B ==o D([Stop])
	C --> D
Loading

Class Diagrams

classDiagram
	class Person {
		+Id : Guid
		+FirstName : string
		+LastName : string
		-privateProperty : string
		#ProtectedProperty : string
		%InternalProperty : string
	}
Loading