|
-
Nov 16th, 2007, 04:59 AM
#1
Thread Starter
Addicted Member
Req.: I need class functions/utility functions
Hi,
I need a best collections of C# functions/utility functions. How can i find its?
Tnx.
-
Nov 16th, 2007, 05:37 AM
#2
Re: Req.: I need class functions/utility functions
Your looking for source code?
Have a look in the codebank or at sites like pscode.com
-
Nov 16th, 2007, 06:03 AM
#3
Thread Starter
Addicted Member
Re: Req.: I need class functions/utility functions
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...
-
Nov 16th, 2007, 11:58 PM
#4
Re: Req.: I need class functions/utility functions
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:
I need a best collections of C# functions/utility functions. How can i find its?
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.
-
Nov 17th, 2007, 03:14 AM
#5
Thread Starter
Addicted Member
Re: Req.: I need class functions/utility functions
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...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|