CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 51

Thread: Learning C#

  1. #31
    Join Date
    Sep 2000
    Location
    Indianapolis
    Posts
    6,754

    Re: Learning C#

    If you have resources in 2.0, they aren't going to hurt you to learn from. Many people aren't using 3.5 at this point anyway, plus most of what is added in .NET 3.0 and 3.5 are add-ons to 2.0.

    Of course, if it doesn't matter what version you need to use, then I'd almost always recommend using the most recent version.

    Brad!

  2. #32
    Join Date
    Apr 2009
    Posts
    3

    Re: Learning C#

    Thanks.

  3. #33
    Join Date
    Jul 2009
    Posts
    1

    Re: Learning C#

    hi there,
    I am new here and a beginner on C#.

    Just wanna ask a question.
    I just learn C# for mobile using Lab manual book. there is a step that said, I've to find .ini file on project solution folder. but, I can't found it. Any suggest?

    Thanks.

  4. #34
    Join Date
    Aug 2009
    Posts
    3

    Re: Learning C#

    Hi all, who can help me with this question??

    which of the following is not unboxing conversion?
    a. void func1(object o)
    {
    int i = (int)o;
    }
    b. void func1(ValueType v)
    {
    int i = (int)v;
    }
    c. enum En {e1, e2}
    void func1(System.Enum et)
    {
    En e = (En) et;
    }
    d. interface I {int Value {get; set;}}
    void func1(I vt)
    {
    int i = vt.Value;
    }
    e. class C { public int Value {get; set;}}
    void func1(C vt)
    {
    int i = vt.Value;
    }

  5. #35
    Join Date
    Oct 2009
    Posts
    1

    Resolved Re: Learning C#

    its sooo kind of u ,thanks

  6. #36
    Join Date
    Apr 2011
    Posts
    23

    Re: Learning C#

    http://msdn.microsoft.com/en-us/beginner/bb308891.aspx

    with this and the powerful search engine called google I have made my first program pretty crude source code but it did what I wanted it to do.

    Brad Jones wonder if you could include this link some people learn much quicker by seeing then reading.

  7. #37
    Join Date
    Dec 2007
    Posts
    1

    Re: Learning C#

    Very useful for green hand!

  8. #38
    Join Date
    Nov 2011
    Posts
    2

    Question Re: Learning C#

    Hi ALL,

    Are there anyone who know how to write simplex method codes on C sharp? It is my PHD homework.How can I do?
    Thanks

  9. #39
    Join Date
    Feb 2012
    Posts
    2

    How to run DLL from batch file ?

    I have DLL that do something.
    I want run it by batch file ( so i can schedule the batch to run the DLL )
    I try to find posts about it but not find it

    someone have a good example ?
    Tnx.

  10. #40
    Join Date
    Sep 2012
    Posts
    3

    Re: Learning C#

    Brad,

    Is this site still maintained? - http://www.teachyourselfcsharp.com/TYCSharp/

    I am having trouble running your Type & Run program from the day 1 section. Copied it line by line in to my editor and it compiles fine but when running it, I am getting: Input string was not in the correct format.

    I went on the above site but the navigation items return page not found errors

  11. #41
    Join Date
    Sep 2000
    Location
    Indianapolis
    Posts
    6,754

    Re: Learning C#

    Honestly - I've not done anything with that site in.... a several years. I'll try to take a look. Feel free to post the listing in the C# forum and see what people say. I'll try to take a look later today if I can get to a machine with a C# complier.
    -----------------------------------------------
    Brad! Jones,
    Yowza Publishing
    LotsOfSoftware, LLC

    -----------------------------------------------

  12. #42
    Join Date
    Sep 2012
    Posts
    3

    Re: Learning C#

    ok cool. i've managed to get the code sorted

    thanks for replying!

  13. #43
    Join Date
    Jul 2013
    Posts
    1

    Re: Learning C#

    Hi
    I am looking for c# code to add rows headers and data rows dynamically at runtime .Need urgent help for same

  14. #44
    Join Date
    Nov 2012
    Posts
    3

    Re: Learning C#

    Hi
    Guys
    Can anybody assist me with lectures how to build GUI by using C# AND online question screen (c#)

  15. #45
    John E is offline Elite Member Power Poster
    Join Date
    Apr 2001
    Location
    Manchester, England
    Posts
    4,835

    Re: Learning C#

    When you say "online" do you mean that users should be able to view it in a browser? If so, I'd have thought that HTML or JavaScript might be a better choice. Why do you want C# specifically?
    "A problem well stated is a problem half solved.” - Charles F. Kettering

Page 3 of 4 FirstFirst 1234 LastLast

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

Featured