IsStatic() public method

public IsStatic ( ) : bool
return 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);
        }