Exemple #1
0
        public static bool IsImmutable(this BaseTypeDeclarationSyntax node)
        {
            if (node == null)
            {
                return(false);
            }

            return(node.DirectlyInherits("IImmutable"));
        }