/// <summary> /// Find a child namespace in the specified <see cref="Namespace"/> with the specified name. /// </summary> /// <returns>A <see cref="NamespaceRef"/> to the namespace, or an <see cref="UnresolvedRef"/> if no match was found.</returns> public static SymbolicRef Find(INamespace @namespace, string name, bool isFirstOnLine) { return(Find(@namespace.Find(name), name, isFirstOnLine)); }
/// <summary> /// Find a child namespace in the specified <see cref="Namespace"/> with the specified name. /// </summary> /// <returns>A <see cref="NamespaceRef"/> to the namespace, or an <see cref="UnresolvedRef"/> if no match was found.</returns> public static SymbolicRef Find(INamespace @namespace, string name) { return(Find(@namespace.Find(name), name, false)); }