如何获得完全合格的程序集名称

如何获得完全合格的程序集名称

本文介绍了如何获得完全合格的程序集名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有简单的方法来获得装配的全限定名称?例如

is there any easy way to get the fully qualified name for assembbly? e.g.

<section name="unity" type=" Microsoft.Practices.Unity.Configuration.UnityConfigurationSection, Microsoft.Practices.Unity.Configuration, Version=2.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

推荐答案

文章(如何:确定程序集的全限定名称)可能会为您提供帮助

This article (How to: Determine an Assembly's Fully Qualified Name) will probably help you

MSDN中的代码

//s if the Fully Qualified assembly name
Type t = typeof(System.Data.DataSet);
string s = t.Assembly.FullName.ToString();

这篇关于如何获得完全合格的程序集名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 13:40