public static bool TryFind(TagGroup group, out Type result) => TryFind(group.Tag, out result);
/// <summary> /// Finds the structure type corresponding to a group. /// </summary> /// <param name="group">The group to search for.</param> /// <returns>The structure type if found, or <c>null</c> otherwise.</returns> public static Type Find(TagGroup group) => Find(group.Tag);