You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To iterate over items of a repeated extensions, one needs to do:
for (int i = 0; i < msg.GetExtensionCount(ExtId); i++)
{
var ext = msg.GetExtension(ExtId, i);
// use ext.
}
It would be nice if one could write:
foreach (var ext in msg.GetExtensionList(ExtId))
{
// use ext.
}
Original issue reported on code.google.com by [email protected] on 7 Mar 2014 at 4:48
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 7 Mar 2014 at 4:48The text was updated successfully, but these errors were encountered: