In this code :
public abstract class DCMenuAgrupado
{
Object x = this;
}
Why I can t use keyword 'this' ?
compile error : Keyword this is not available in the current context
Thanks.
public abstract class DCMenuAgrupado
{
Object x = this;
}
Why I can t use keyword 'this' ?
compile error : Keyword this is not available in the current context
Thanks.
Comment