Dieses Snippet ermittelt die GUID des gerade ausgeführten Assemblies. Dies kann ganz nützlich sein, wenn man das Assembly global identifizieren will.
/// <summary>
/// Determines the GUID of the current assembly
/// </summary>
/// <returns>GUID as string</returns>
private string GetAssemblyGUID()
{
string id = "";
foreach (object attr in Assembly.GetExecutingAssembly().GetCustomAttributes(true))
{
if (attr is GuidAttribute)
id = ((GuidAttribute)attr).Value;
}
return id;
}
Kommentare zum Snippet