If I have a script class which has member variables which are handles to app-registered types, and I don't explicitly initialize them in the declaration or in the ctor, should they be automatically initialized to null?
For example:
class MyScriptClass
{
private MyAppClass@ someHandle;
}
Thank you.