Click here to Skip to main content
15,890,512 members
Articles / Programming Languages / C#
Article

Object Explorer

Rate me:
Please Sign up or sign in to vote.
3.11/5 (5 votes)
16 Feb 20032 min read 112.2K   1.6K   29   15
Provides a Windows Forms control for viewing an object state during execution.

Introduction

In medium to large scale IT project you will end up with quite a lot of business logic objects. To test each one of them you generally create some kind of test window that will accept initial data, run some logic, and then display new object states. So we will have window with a nice [GO!] command button and a bunch of labels to display properties and fields of a business entity after processing, and a couple of dozens lines of boring code to copy data from object instance to these labels. If your object contains collection or other objects, your choices will be:

  1. Test it in debugger.
  2. Spend a working day or two just to create a decent test window.

In mine opinion, a programmer should be lazy enough to spend 9 hours 59 minutes to create tool that can do something that can be done manually in 10 hours, and than have 1 minute to enjoy while the magic happens.

Instead of making copy-paste functionality for each business entity we want to check, let's build a generic black box which can accept objects and display everything it has inside. Using reflection, there is no object we cannot disassemble!

Our Windows Control Library contains user control that you can use as part of your test window and a complete "Display object state" window. Object properties are presented in a ListView. You can double-click on any non-primitive field or property to display its state (drill down).

Feel free to use this code; it will be great if it will save you some boring coding time. As usual any suggestions will be appreciated.

Using the Code

  • Add reference to the WindowsUtils assembly to your test project.
  • Add the using case:
    C#
    using ClalBit.Infrastruct.WindowsUtils;
  • Add the following wherever you want to display your object state:
    C#
    frmObjectProperties frm = new frmObjectProperties(objectToExplore, "ObjectName");
    frm.Show();

In case you want to create a more complicated test window, you can use the ObjectProperties control instead. Just drop it onto your form and call the SetObject method on it. See frmObjectProperties for an example.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Israel Israel
Leon works as Chief Architect at SRL Group. He leads architectural design and development of various enterprise level projects.
You can meet him on user groups, conferences and forums dedicated to Architecture, ASP.NET, Team System etc. or join him for the next white water rafting adventure

Comments and Discussions

 
GeneralReturn Type Pin
Sanjivc22-Mar-04 2:51
sussSanjivc22-Mar-04 2:51 
Questionmissing dll? Pin
User 3874618-Feb-03 16:56
User 3874618-Feb-03 16:56 
AnswerRe: missing dll? Pin
Leon Langleyben18-Feb-03 21:21
Leon Langleyben18-Feb-03 21:21 
GeneralRe: missing dll? Pin
User 3874620-Feb-03 21:16
User 3874620-Feb-03 21:16 
GeneralRe: missing dll? Pin
Leon Langleyben22-Feb-03 19:25
Leon Langleyben22-Feb-03 19:25 
QuestionWhy not just use the propertygrid? Pin
leppie18-Feb-03 10:02
leppie18-Feb-03 10:02 
AnswerRe: Why not just use the propertygrid? Pin
Leon Langleyben18-Feb-03 21:12
Leon Langleyben18-Feb-03 21:12 
QuestionCan you Provide? Pin
Delegate18-Feb-03 6:29
Delegate18-Feb-03 6:29 
AnswerRe: Can you Provide? Pin
Furty18-Feb-03 16:24
Furty18-Feb-03 16:24 
QuestionWhy not use the Debugger? Pin
Heath Stewart17-Feb-03 17:55
protectorHeath Stewart17-Feb-03 17:55 
AnswerRe: Why not use the Debugger? Pin
Leon Langleyben17-Feb-03 23:41
Leon Langleyben17-Feb-03 23:41 
GeneralRe: Why not use the Debugger? Pin
Heath Stewart18-Feb-03 17:05
protectorHeath Stewart18-Feb-03 17:05 
AnswerRe: Why not use the Debugger? Pin
Lee Alexander21-Mar-04 21:39
Lee Alexander21-Mar-04 21:39 
GeneralRe: Why not use the Debugger? Pin
Heath Stewart22-Mar-04 3:11
protectorHeath Stewart22-Mar-04 3:11 
GeneralRe: Why not use the Debugger? Pin
Lee Alexander22-Mar-04 3:34
Lee Alexander22-Mar-04 3:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.