UnityScript.Parser.UnityScriptParser.IsConstructorName C# (CSharp) Méthode

IsConstructorName() public static méthode

public static IsConstructorName ( string name, TypeDefinition type ) : bool
name string
type TypeDefinition
Résultat bool
        public static bool IsConstructorName(string name, TypeDefinition type)
        {
            bool flag1 = type.get_NodeType() != 11;
            if (!flag1)
            {
                return flag1;
            }
            return (name == type.get_Name());
        }
UnityScriptParser