My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Featured
Downloads
Links

CompulsoryCat

is a small collection of helper methods.

There is MetaData for getting meta data out of dotnet4 classes.

Use it for instance for avoiding

void MyMethod(){
    MyLoggingMethod( "MyMethod", "Start" );
    ...

and instead

void MyMethod(){
    MyLoggingMethod( GetMethod().Name, "Start" );
    ...

See a tad more here.

There is Assemblyname for retrieving a tree of the AssemblyNames the running application uses.

See a tad more here.

There is a helper method for splitting a string into parts.

"abcdefg".SplitToLength(3) => "abc","def","g"
Powered by Google Project Hosting