I'm converting a windows forms application to a WPF application. Is there a way to obtain things like, Startup Path, User App Data Path, Common App Data Path, etc. without referencing System.Windows.Forms?
Previously, I used System.Windows.Forms.Application.StartupPath
, but the System.Windows.Application.Current
object doesn't contain the same information.