nfdi4plants/ARCtrl

`ARCtrl.Path` shadows `System.IO.Path`

kMutagene opened this issue · 1 comments

It is a common use case to open System.IO and use the Path class. However, ARCtrl also has a Path namespace, which shadows that class when opening both. I would suggest to prevent this by adding RequireQualifiedAccess.

using ARCtrl;
using System.IO

Path.Combine("A", "B")

image

I renamed to ARCtrl.ArcPathHelper to still allow opening the module where needed.