CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: ClassCoder

Search: Search took 0.03 seconds.

  1. Thread: Grammar

    by ClassCoder
    Replies
    2
    Views
    862

    Re: Grammar

    Delegates in C#
  2. Replies
    4
    Views
    900

    Re: What does "()=>" mean?

    see this link to understand lamda expressions .. it's a part from linq to working with data in fast and easy way
  3. Replies
    1
    Views
    2,324

    Re: .datasource file

    in your problem you can use many of data sources such as database files(mdf & mdb) or text files (plain or binary) or xml files or other ways..can you tell me what data which stored in data source??
  4. Re: Assigning a random number to an array List c#?

    i agree with you .. i don't never use ArrayList in my applications .. i prefer using List<>,HashTable<,>,Dictionary<,>


    when we use LINQ IEnumrable<>
  5. Re: Assigning a random number to an array List c#?

    Random rnd = new Random();
    System.Collections.ArrayList rndID = new System.Collections.ArrayList();
    int numsID = 20;
    int minID = 1;
    int maxID =...
  6. Replies
    0
    Views
    1,917

    Mastering GDI+ - Drawing Basics

    in this code sample i explained all important basics for drawing using GDI+ by C# language

    http://classcoder.com/files/images/mastergdibasics.jpg



    1.Draw Lines
    2.Draw Ellipses and Circles...
  7. Replies
    6
    Views
    2,299

    Re: problem with dividing int numbers in C#

    i corrected your code

    static void Main()
    {
    int divident = 0;
    int divisor = 0;
    double division = 0;
    int rest = 0;
    ...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured