c#
1using System; 2using System.Collections.Generic; 3using System.Linq; 4using System.Text; 5using System.Reflection; 6 7 8namespace DotNETDllImportConsole 9{ 10 class Program 11 { 12 static void Main(string[] args) 13 { 14 string mypath = "test\ClassLibrary1.dll"; 15 Assembly asm = Assembly.LoadFrom(mypath); 16 Module mod = asm.GetModule(mypath); 17 System.Type type = mod.GetType("namespace1.Class1"); 18 if (type != null) 19 { 20 Object obj = Activator.CreateInstance(type); 21 22 Type[] types = new Type[2]; 23 types[0] = typeof(string); 24 types[1] = typeof(string); 25 MethodInfo method = type.GetMethod("method", types); 26 object ret = method.Invoke(obj, new string[] { "abc", "def" }); 27 28 Console.WriteLine(ret); 29 } 30 } 31 } 32}
visualstudio2019で書いています。Windows10です。ClassLibrary1.dllをtestに入れて使いたいと思っています。
string mypath = "test\ClassLibrary1.dll";
や
string mypath = @"test\ClassLibrary1.dll";
や
絶対パスにしてもうまく通りません。
string mypath = "ClassLibrary1.dll";
とするとうまくいくので他のコードは合ってると思うのですが原因がわかりません。
原因がわかる方教えていだだけないでしょうか。
よろしくお願いします。
追記
C#
1using System; 2using System.Collections.Generic; 3using System.Linq; 4using System.Text; 5using System.Reflection; 6using System.IO; 7 8 9 10namespace DotNETDllImportConsole 11{ 12 class Program 13 { 14 static void Main(string[] args) 15 { 16 StreamReader sr = new StreamReader(@"C:\Users\UserName\source\repos\DotNETDllImportConsole\DotNETDllImportConsole\bin\Debug\test\text.txt", Encoding.GetEncoding("UTF-8")); 17 //このtext.txtにはuntiと記入されています 18 string str = sr.ReadToEnd(); 19 20 sr.Close(); 21 22 Console.WriteLine(str); 23 24; 25 string mypath = @"C:\Users\UserName\source\repos\DotNETDllImportConsole\DotNETDllImportConsole\bin\Debug\test\ClassLibrary1.dll"; 26 Assembly asm = Assembly.LoadFrom(mypath); 27 Module mod = asm.GetModule(mypath); 28 if (mod == null) 29 { 30 Console.WriteLine("@@@"); 31 } 32 System.Type type = mod.GetType("namespace1.Class1"); 33 if (type != null) 34 { 35 Object obj = Activator.CreateInstance(type); 36 37 Type[] types = new Type[2]; 38 types[0] = typeof(string); 39 types[1] = typeof(string); 40 MethodInfo method = type.GetMethod("method", types); 41 object ret = method.Invoke(obj, new string[] { "abc", "def" }); 42 43 Console.WriteLine(ret); 44 } 45 } 46 } 47} 48
度々、必要な情報が抜けていて申し訳ありません。.NETFramework3.5でビルドしました。Win10,VisualStudio2019です。ClassLibrary1.dllはC:\Users\UserName\source\repos\DotNETDllImportConsole\DotNETDllImportConsole\bin\Debug\testに置いてあり、カレントディレクトリはDebugです。
皆さんの回答を参考にして試してみました。前のコードに少し足して実行したところをコンソールに以下の文章が表示されました。
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
unti
@@@
ハンドルされていない例外: System.NullReferenceException: オブジェクト参照がオブジェクト インスタンスに設定されていません。
場所 DotNETDllImportConsole.Program.Main(String[] args) 場所 C:\Users\UserName\source\repos\DotNETDllImportConsole\DotNETDllImportConsole\Program.cs:行 33
続行するには何かキーを押してください . . .
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
text.txtの文字を読み取ってコンソールに表示しているため絶対パスの書き方はあっているのではないかと思います。カレントディレクトリにClassLibrary1.dllを移動して、string mypath = @"ClassLibrary1.dll";とするとうまくいきます。
至らない文章を混乱させてしまったかもしれませんがもし原因のわかる方がいればご教授いただけますと幸いです。
よろしくお願いします。
回答6件
あなたの回答
tips
プレビュー