I have an ASP.Net website that references a class library. In the class library I need to read a file into memory.
At the top level of my class library there is a fo
I am not sure what you mean by a folder in the class library but you can use the current working directory if you wish to build a path as follows:
System.IO.Directory.GetCurrentDirectory()
You can then use the Path.Combine() method to build file paths.
Path.Combine()