Conversation
|
Oops, let me fix the build fail. |
|
version bumps as well please |
|
@taooceros need to also bump bookmarks plugin version. Does removing readonly improve anything? I don't remember, remind me again what's the benefit of using enumerate over get for directories? |
No, but readonly requires initialization in constructor, while we construct instance in sync. I move that to Init() to allow parallel initialization. |
Sorry I miss this question. It will be faster because we don't need to wait the enumeration finish to create an array, but can do what we want as the enumeration going. GetDirectories/GetFiles will return an array, while enumerateDirectories will return an IEnumerable. |
A few enhancement I found during the investigation of #371