#author("2018-12-25T16:02:24+00:00","default:ahyahya2","ahyahya2")
[[戻る>DoldoWorkz#visualstudio]]
-[[''C#''>C#]]
--[[C#/開発環境の使い方]]
--[[C#/Delphiから]]
--[[C#/SampleCode]]&color(red){''✓''};
--[[C#/SampleCode/FormCreate]]
*目次 [#kaaee3b6]
#contents
*自分自身のexe・dllのフォルダパスの取得 [#c6149f57]
using System.IO;
using System.Reflection;
Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
*メッセージダイアログ表示 [#x932dca6]
MessageBox.Show("あいうえお");