構造体の属性 x と y を入力する必要があります。多くのメンバー (x、y...) があり、それらのすべてが同じ属性 (読み取り、書き込みなど) を持っていることを考えると、とにかくこれよりも短い方法でこれを行うことができますか?
features.x.Read = GetAttribute(node,"x","Read",HexValue);
features.x.Write = GetAttribute(node,"x","Write",HexValue);
features.x.address = GetAttribute(node,"x","address",HexValue);
features.x.value = GetAttribute(node,"x","value",HexValue);
features.y.Read = GetAttribute(node,"y","Read",HexValue);
features.y.Write = GetAttribute(node,"y","Write",HexValue);
features.y.address = GetAttribute(node,"y","address",HexValue);
features.y.value = GetAttribute(node,"y","value",HexValue);
ありがとうございました