I\'m fresh to F#, but I really want to learn it. I know Python, I know C#. As a matter of fact, I\'ve got a C# library that I\'ve made myself; it\'s an wrapper for the Rdio API
The following code works if F# environment can find the location of Rdiosharp.dll
. Usually not! So it does not work and tells you that "error FS0084: Assembly reference 'RdioSharp.dll' was not found or is invalid".
#r "RdioSharp.dll"
You can provide the exact path of this dll as in:
#r @"c:\temp\RdioSharp.dll"
or you can add its folder into search-path:
#I @"c:\temp"