Hi,
First off Roslyn is AWESOME the team working on this deserves a big thumbs-up.
Anyways I am currently using the September CTP in a little WPF app in conjunction with the AvalonEdit control.
When using CompletionItem.GetDescription() how do you tell which SymbolDisplayPart is the Identifier that corresponds to the DisplayText? For example if the Description is for "Console.WriteLine(string value)" How do you get the corresponding SymbolDisplayPart for "WriteLine"? (I am trying to create tooltip text similar to visual studio)
When getting the completion list I am trying to work out how best to handle multiple CompletionItemGroups? My guess is you get more than one group if the a method has multiple overloads. How do you choose the write items for a given overload?
Also I am not sure if it is a bug or not implemented yet but the number of places I have tried to use the ISymbol.ToDisplayString method it seems to ignore my IFormatProvider.
Cheers,
Dan