Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Common Library [closed]

I'm hoping to find an open source .net common library, but I'm having a hard time finding one.

What I'm looking for a is something that contains : Logging, Caching, String Manipulation, Config Reading, ext?!?.

Do you know if anything like this exists or is this more likely something that I will need to create myself?

like image 428
stevenrosscampbell Avatar asked Jan 31 '09 04:01

stevenrosscampbell


People also ask

What is C in simple words?

C Introduction C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

Is C or C++ same?

While C and C++ may sound similar, their features and usage differ. C is a procedural programming language that support objects and classes. On the other hand C++ is an enhanced version of C programming with object-oriented programming support.

What is full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.


2 Answers

Use Microsoft Enterprise Application Blocks

Get it from here

http://msdn.microsoft.com/en-us/library/cc467894.aspx

Source code here

http://www.codeplex.com/entlib

like image 174
amazedsaint Avatar answered Oct 06 '22 02:10

amazedsaint


  • Microsoft Enterprise Library - Built by Microsoft, source code is available
  • Spring.NET - Open source development framework
like image 40
davogones Avatar answered Oct 06 '22 03:10

davogones