Results 1 to 5 of 5

Thread: Req.: I need class functions/utility functions

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jan 2007
    Location
    Iran
    Posts
    237

    Question Req.: I need class functions/utility functions

    Hi,
    I need a best collections of C# functions/utility functions. How can i find its?
    Tnx.
    Y.P.Y

  2. #2
    Interweb adm/o/distrator Paul M's Avatar
    Join Date
    Nov 2006
    Location
    Australia, Melbourne
    Posts
    2,306

    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

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Jan 2007
    Location
    Iran
    Posts
    237

    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...
    Y.P.Y

  4. #4
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    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.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  5. #5

    Thread Starter
    Addicted Member
    Join Date
    Jan 2007
    Location
    Iran
    Posts
    237

    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...
    Y.P.Y

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width