Hi,
I noticed today that AppDomain.CurrentDomain.BaseDirectory in MS.NET
returns the ending "/" and in Mono the ending "/" is missing.
It can be a bug to record or it's by design? I don't know if there's
the same issue on others system directories.
__
Hi,
There is slight difference between the implementation of
"AppDomain.CurrentDomain.BaseDirectory" and MS.NET.
When run on Windows
- returns "[ApplicationDirectory]/"
while when run on MONO
- returns "[aplicationDirectory]" ( no slash in end ).
Please take note of it.