assembly.load

Load strongly-name assembly from specific path?

I have a strongly-named assembly, installed to a specific folder (and not the GAC). The name as shown in Reflector is: "Foo.Bar.TreeFrog, Version=1.2.1.0, Culture=neutral, PublicKeyToken=ac88c4a8b22089b4" and the path where it's installed is "c:\\QueueBall" Can I use Assembly.Load or Assembly.LoadFrom to load it, and if so how? C...