码迷,mamicode.com
首页 > Web开发 > 详细

.net利用程序集的GUID解决程序只能运行一次的问题

时间:2014-08-01 13:11:01      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:os   strong   for   问题   .net   type   file   ui   

可以解决同名的程序集(但非同一程序集)只能运行一次的问题,网上很资料都是只检测程序是否同名,不能真正的保证是同一程序集。

 

private bool prevInstance()
{
Process[] myProcesses= Process.GetProcessesByName(Process.GetCurrentProcess().ProcessName);
if (myProcesses.Length > 1)
{
GuidAttribute curGuid = (GuidAttribute)(Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(GuidAttribute), false)[0]);
foreach (Process process in myProcesses)
{
if (Process.GetCurrentProcess().Id != process.Id)
{
Assembly ass = Assembly.LoadFrom(process.MainModule.FileName);
GuidAttribute[] guids = (GuidAttribute[])ass.GetCustomAttributes(typeof(GuidAttribute), false);
if (guids.Length > 0)
{
if (curGuid.Value.ToString().Equals(guids[0].Value.ToString()))
return true;
}
}
}
}
return false;

}

.net利用程序集的GUID解决程序只能运行一次的问题,布布扣,bubuko.com

.net利用程序集的GUID解决程序只能运行一次的问题

标签:os   strong   for   问题   .net   type   file   ui   

原文地址:http://www.cnblogs.com/blogsChen/p/3884577.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!