C# Improvement
-
Hello all, I am now ICT student, but i am facing a great problem, I cannot improve my C# Skill. How can improve my C# skill?
-
Hello all, I am now ICT student, but i am facing a great problem, I cannot improve my C# Skill. How can improve my C# skill?
Read the specification a couple of times, I find that there's something "new" in it every time I read it. Read Eric Lippert's blog. Do a lot of coding. Don't be afraid to ask questions if you have to, but check the specification first - the answer you'll get from it (if any) will usually be better than the answer you'll get online. If the question is more about architecture and/or style, often the best way to find out is to try everything and see how they work out.
-
Hello all, I am now ICT student, but i am facing a great problem, I cannot improve my C# Skill. How can improve my C# skill?
-
Hello all, I am now ICT student, but i am facing a great problem, I cannot improve my C# Skill. How can improve my C# skill?
There're a lot of tutorials: http://msdn.microsoft.com/en-us/library/aa288436%28v=vs.71%29.aspx[^] http://www.csharp-station.com/tutorial.aspx[^] http://www.java2s.com/Tutorial/CSharp/CatalogCSharp.htm[^] Find more here: http://www.google.com/search?q=c%23+tutorial[^]
In some cases, my signature will be longer then my message... ProgramFOX
-
Hello all, I am now ICT student, but i am facing a great problem, I cannot improve my C# Skill. How can improve my C# skill?
Effective C# (2nd Edition) by Bill Wagner: http://books.google.com/books/about/Effective_C_covers_C_4_0.html?id=d936ujpl_V8C[^]
"Microsoft -- Adding unnecessary complexity to your work since 1987!"
-
Hello all, I am now ICT student, but i am facing a great problem, I cannot improve my C# Skill. How can improve my C# skill?
start by modyfying an existing cool program (heaps of example here on code project) and make it "better" ;P or add or modify 1 functionality! do it again and again and modify more and more. as you'll gain confidence you can progressively start from scratch!!
A train station is where the train stops. A bus station is where the bus stops. On my desk, I have a work station.... _________________________________________________________ My programs never have bugs, they just develop random features.
-
Hello all, I am now ICT student, but i am facing a great problem, I cannot improve my C# Skill. How can improve my C# skill?
Debug applications as well, and try to get in as much code as you can. You can know a great deal of C# but still be confused by how the code is layed out. There is may ways to layout the code for an application, some may get really Object Oriented and break out everything over and over, and some may have it all inline so knowing the proper way of doing it helps. Also work with this site as you can simplify some logic by know these factors: http://msdn.microsoft.com/en-us/library/67ef8sbd.aspx[^] Notice it shows 2012 but most of that is pretty in general in terms of what the parts are as it references the book of .net Framework 3.0. Hope that helps, happy progressing.