dbones notes
its a geek thing

Some Links for AOP

March 11, 2009 00:36 by Dave
AOP is a great way to clean code, well if used correctly. lots of examples will only show the logging example, when an exception is thrown (I should know here is one I wrote: hello world of AOP). Well thats ok, you can see it in action and step through it, however that for me was not enough. ... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags: ,
Categories: alt.net | dotNet
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

Setting the property values back to a default value (using Reflection)

March 9, 2009 19:48 by Dave
 This is just to demo a way which could be implemented to reset all the properties to the default values. consider the following: [code:c#]  Test test = new Test(); test.Age = 26; test.Name = "dave"; test.Test1 = 2222; //do some work with the object ... [More]

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Tags:
Categories: dotNet
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed