It's `default(T)` in C#. However it doesn't make s...
# announcements
k
It's
default(T)
in C#. However it doesn't make sense on the JVM. Generic types are always reference types, therefore the default is always
null
. Also, erasure...