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