>>180
たぶん実行中じゃないからdllが読み込まれてなくて取得できないんだよね。
これでどう?

using System.IO;
using System.Reflection;

string libPath = Path.Combine(Directory.GetCurrentDirectory(), "/Library/ScriptAssemblies/Assembly-CSharp.dll");
Assembly assembly = Assembly.LoadFrom(libPath);
System.Type hogeType = assembly.GetType("Hoge");
Hoge hoge = System.Activator.CreateInstance(hogeType);