Groups | Blog | Home
all groups > dotnet general > june 2004 >

dotnet general : reflection uses



guy
6/30/2004 5:33:02 AM
the VS.NET debugger :-)

[quoted text, click to view]
Greg Young
6/30/2004 11:36:27 AM
sure ....

how about default serialization of objects ?

how about the databinding of classes to display objects ?

by being able to get the description of an object one can do many things ...

Greg


[quoted text, click to view]

Eddie de Bear
6/30/2004 5:57:01 PM
Reflection..

One of the things I have used reflection for was to create a better Comparer. The comparer I created alows me to sort my own custom collection based on a string array of fields. Works really well

Another thing I use reflection for is for Generic validation. Most of my business objects have custom attributes such as "Required", Min/Max Values etc that are retrieved by reflection from an Extender control. This allows me to bind business objects directly to the UI and still define these requirements in a single central location.

These are just some of the places I use reflection almost every day.
--
Eddie de Bear
MCSD


[quoted text, click to view]
Sean Bright
6/30/2004 7:16:58 PM
Create a simple console application that defines a IPlugin interface of
some kind, say something like this:

public interface IPlugin
{
void PerformSomeAction(System.IO.TextWriter output);
}

Then create "class library" assemblies that have classes that implement
said interface:

public class HelloWorldPlugin : MyConsoleApplication.Whatever.IPlugin
{
public HelloWorldPlugin()
{
}

public void PerformSomeAction(System.IO.TextWriter output)
{
output.WriteLine("Hello, World!");
}
}

public class GoodbyeWorldPlugin : MyConsoleApplication.Whatever.IPlugin
{
public GoodbyeWorldPlugin()
{
}

public void PerformSomeAction(System.IO.TextWriter output)
{
output.WriteLine("Goodbye, cruel... cruel... World!");
}
}

Then use reflection to load those assemblies at run-time, and call the
PerformSomeAction() method on the classes, passing Console.Out or
something along those lines.

Something like that?

Good luck,
Sean

[quoted text, click to view]
Frazer
6/30/2004 9:57:36 PM
hi
could any one tell me which real life senarios reflection can be used in ?
thnx

Frazer
7/1/2004 8:37:12 AM
what can i use it for.
I just want to create some samples of reflection.
I have created a utility.
i have a class and some methods have an attribute called "Storedprocedure"
which takes as a parameter the stored procedure name .
i then use reflection to find out those methods that have these attributes.

and check if the db has those stored procedures or someone has accidently
deleted them.

this is quite useful. but i cant think of any other ways that i can use
reflection.
what do u mean by default serialization of objects?
and how about the databinding of classes to display objects ?
can u elaborate a bit more thanx?



[quoted text, click to view]

AddThis Social Bookmark Button