/// <summary> /// Gets the child <see cref="GffResourceField"/> with the specified key. /// </summary> public GffResourceField? this[string index] => GffResourceField.Create(resGff, rootStruct, index);
/// <summary> /// Gets the child <see cref="GffResourceField"/> at the specified index. /// </summary> public GffResourceField? this[int index] => GffResourceField.Create(resGff, rootStruct, (uint)index);