Hi,
I need a best collections of C# functions/utility functions. How can i find its?
Tnx. :)
Printable View
Hi,
I need a best collections of C# functions/utility functions. How can i find its?
Tnx. :)
Your looking for source code?
Have a look in the codebank or at sites like pscode.com
No app. source code. Just class/function source code.
Ex.:
namespace UtilityFunctions
{
public void Ping(string IPAddress)
{
...
}
public void HTMLReplacer(string Target)
{
...
}
public void DatabaseConnection(string DatabasePath, string DatabaseName,...)
{
..
}
And... :)
You should search for "I want a C# library that will do everything" and when you get no results you may realise that such a thing doesn't exist. To say:is quite ridiculous. There are all sorts of libraries available to do all sorts of things. The point of a library is to group together a bunch of related functionality. Why would anyone group together methods to ping an IP address, replace some HTML code and to connect to a database? They are all completely unrelated. There are likely to be various libraries available to simplify things like those three and others, but the likelihood of finding them all together is effectively zero. If you want code to do a job then look for code to do that job. If you want one component that will do everything then I wish you luck.Quote:
I need a best collections of C# functions/utility functions. How can i find its?
True, but i need function to use in all web/desktop applications(No coding again).
Ex.: public void HTMLReplacer(string Target), public void Ping(string IPAddress) and...