IsStatic() public method

public IsStatic ( ) : bool
return bool
Ejemplo n.º 1
0
        public bool isStaticClass()
        {
            AggregateSymbol agg = GetNakedAgg(false);

            if (agg == null)
            {
                return(false);
            }

            if (!agg.IsStatic())
            {
                return(false);
            }

            return(true);
        }