IsStatic() 공개 메소드

public IsStatic ( ) : bool
리턴 bool
예제 #1
0
파일: Type.cs 프로젝트: wenchaoli/corefx
        public bool isStaticClass()
        {
            AggregateSymbol agg = GetNakedAgg(false);

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

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

            return(true);
        }