I have an assembly qualified name of a type, e.g.
MyNamespace.MyClass, MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
I want to extract the assembly full name, i.e.
MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
Obviously I could do this with simple string parsing, but is there a framework method for doing this?
Note: I don't have the type or assembly, just the string, and this is an essential part of the problem, so myType.AssemblyQualifiedName, myType.Assembly.FullName, etc isn't going to help