Feature Request
I am finding it a bit painful accessing attribute values on an Aspose Feature
compared to other libraries, as I have to access them one at a time via feature.GetValue<type>()
.
I would like a method called feature.GetValues()
that returns an object[]
or a IReadOnlyList<object>
. This would return all attribute values for the Feature
in a single call.
SqlServer allows both access types, one at a time or
all at once.
I believe internally you are storing attribute values as an object[]
anyways, so it should be pretty easy to implement.
On the flip side, it would be nice to have a method feature.SetValues(object[] values)
to streamline setting values in one call.