CsDebugScript.CodeGen.UserTypes.UserTypeFactory.ContainsSymbol C# (CSharp) Method

ContainsSymbol() private method

Determines whether the factory contains the specified type.
private ContainsSymbol ( Module module, string typeString ) : bool
module Module The module.
typeString string The type string.
return bool
        internal bool ContainsSymbol(Module module, string typeString)
        {
            UserType userType;

            return GetUserType(module, typeString, out userType);
        }