Can a Symbol = null ?
Created at 15 Mar 2019, 03:46
A.
Can a Symbol = null ?
15 Mar 2019, 03:46
Can a Symbol = null, without having any errors ?
For example :
Symbol symbol = null;
I want to create a method that can take a symbol as an optional argument so I want to initialize it to null, is it possible ?
Thanks.
PanagiotisCharalampous
15 Mar 2019, 10:47
Ηi a.fernandez.martinez,
It is possible but you need to program your function properly to avoid NullReference exceptions.
Best Regards,
Panagiotis
@PanagiotisCharalampous