-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Description
| while (sp.NextVisible(true)) { |
Hey, thank you very much for this example. It's super helpful for a project I'm working on. To help out a little bit, I wanted to point out a tiny issue in your code.
Unfortunately this bit here will skip the first property, as you are immediately calling sp.NextVisible(true) right after getting the first property. You might want to change this to do{ ... }while(sp.NextVisible(true)); so it will process the first iterator before advancing.
Metadata
Metadata
Assignees
Labels
No labels