Hello,
I gather some experience with the trial version of delphi 2010. I am looking for a simple debug visualizer, because the sample debug visualizers are not part of the trail. I do a lot with the new rtti type TValue and TValue.ToString can't be call from the debugger (results in an exception), so my idea is to write a debug visualizer for it. The format shoul look like
(<data-type)<ToString-value>
examples
(integer)5
(string)'Hello World'
(Array<String>)['a', 'list', 'of', 'items']
With a simple demo for a debug-value-replacer (I think this was the name :-) ) I can start.