app.configの要素

[http://msdn.microsoft.com/ja-jp/library/823z9h8w(VS.80).aspx:title=MSDN要素]より
app.configにこれを書いておくとexeがdllを探しにいくパスが追加できるとのこと。
プラグイン的な仕組みのDLLを作る場合に使えそう。
使用例

<configuration>
   <runtime>
      <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
         <probing privatePath="bin;bin2\subbin;bin3"/>
      </assemblyBinding>
   </runtime>
</configuration>