Chia Seng's Station
Home
A-G
API
C
C Sharp
Clojure
Crystal Report
CSS
Flutter
Go
H-N
Hello World
HTML
Java
JS
O-U
PHP
Python
React
Shell
Smali
SQL
V-Z
Xamarin
Home
C Sharp
Other
Detail
Avoid using var unless it clearly improves readability
Do
int x = 10; string y = "hello";
Don't
var x = 10; var y = "hello";