0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ASP.NET 自作DLL作成方法

Posted at

①プロジェクト「クラスライブラリ」作成

②クラスなどコーディング
※自分で「参照の追加」が必要
 system.Web
 System.Drawing

③ビルドしてbinフォルダのdllを参照元から読み込む。

【自作DLLデバッグ方法】
クラスライブラリプロジェクトのプロパティを開く
→デバッグを選択
→debugの「ネイティブコードのデバッグを有効にする」を選択
→debugをビルドし生成されたdllを参照元プロジェクトで読み込む。
→参照元プロジェクトをデバッグ。dll利用する箇所のコードにブレークポイントをおいて、ステップイン。

※参照元プロジェクトにてlog4net設定が必要。
 今回作成したFileUploadのdllはlog4netでログ出力処理を行っているが
 出力先の設定はクラスライブラリ側ではおこなっていない。
 ローカルデバッグで参照元プロジェクトでのlog4net設定が利用され、
 参照dllにてログ出力処理が行われたことを確認。
 

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?