object o that I know is a struct with InlineArrayAttribute, how would I go about getting/setting each of the items?o.GetType().GetCustomAttribute<InlineArrayAttribute>()?.Lengtho.GetType().GetFields(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic).Single()fieldInfo.GetValue/fieldInfo.SetValue seems to only get/set the item at index 0 in the array.