Why Public variables cannot be declared as VarType where as dynamic is allowed? When i declared a variable as Var type as like the following:
public Var xVariable; // It says Type or namespace could not be found
where as it allows the the declaration as
public dynamic xVariable;