Click here to Skip to main content
15,896,426 members
Articles / Programming Languages / C#

How to get FullType From AssemblyQualifiedName (remove Version, Culture and PublicKeyToken)

13 Oct 2010CPOL 919   2
This could be a shorter version,string typename = obj.GetType().AssemblyQualifiedName;int index = typename.IndexOf(", Version");typename = typename.Remove(index)
Only logged in members can view this content

Please go to the C# Table of Contents to view the list of available articles in this section.