Im doing a project where i open up the XML-file Visual Studio can produce with XML-commentaries and extract the data into certain classes.My question is: Lets say i in my program had made a method like this:\[code\]///<summary>///A method for.....///</summary>///<param name="Listception"></param>public void MyMethod(List<Dictionary<List<String>, Dictionary<String, Boolean>>>){ //Statements ect.}\[/code\]In the XML-file that method name would come out as:\[code\]M:AssemblyName.Form1.MyMethod(System.Collections.Generic.List{System.Collections.Generic.Dictionary{System.Collections.Generic.List{System.String},System.Collections.Generic.Dictionary{System.String, System.Boolean}}})\[/code\]My program needs to be able to manipulate this string (along with more simple ones too like \[code\]M:AssemblyName.Form1.AnotherMethod(System.String)\[/code\]) into: \[code\]MyMethod(List< Dictionary< List< String >, Dictionary< String, Boolean >>>)\[/code\]and \[code\]AnotherMethod(String)\[/code\], for the simpler example.. Can anyone tell me how YOU would do this? Regex maybe? Im not too familiar with regular expressions.