Lost Password?

Go Back   CodeCall Programming Forum > Software Development > C# Programming

Unregistered, Check out the Coder Battles in the Announcement and Game forums.

C# Programming C# (pronounced C-sharp) is a new object oriented language from Microsoft and is derived from C and C++. It also borrows a lot of concepts from Java too including garbage collection.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-01-2008, 06:24 AM
RobertQQ RobertQQ is offline
Newbie
 
Join Date: Jul 2008
Posts: 7
Credits: 0
Rep Power: 0
RobertQQ is on a distinguished road
Question Need Help finding Beginners guide/tutorial

Hi all!! I just downloaded ms visual c# 2008 express edition and am going to attempt to learn c#. I was wondering tho', does anyone know of a good beginners guide/tutorial or a site I can go to to learn this? I really appreciate your help! Thanks!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
  #2 (permalink)  
Old 07-01-2008, 12:45 PM
Xav's Avatar   
Xav Xav is offline
Code Warrior
 
Join Date: Mar 2008
Location: London, England
Posts: 7,432
Last Blog:
Web slideshow in JavaS...
Credits: 1,322
Rep Power: 61
Xav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud of
Send a message via MSN to Xav
Default Re: Need Help finding Beginners guide/tutorial

Try Google. Or get a book.
__________________
[TRUTH] TcM is the best moderator ever! [/TRUTH]
"Valid XHTML is like sex - everybody claims to have the same goal, but everybody has their own tricks and results vary wildly."
Mr. Xav | Website | Forums | Blog
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 07-01-2008, 02:40 PM
Siten0308 Siten0308 is offline
Learning Programmer
 
Join Date: Jun 2008
Posts: 89
Credits: 94
Rep Power: 2
Siten0308 is on a distinguished road
Default Re: Need Help finding Beginners guide/tutorial

I am learning from this website right now to learn C# with visual studios 2008, it is great but it is lacking some stuff but atleast it gives you a great start including examples in the videos however still needs more examples and more information on C# itself, but hey overall 9 out of 10.

Tier 2
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 07-02-2008, 02:45 PM
Pancrazio Pancrazio is offline
Newbie
 
Join Date: Jun 2008
Posts: 17
Credits: 0
Rep Power: 2
Pancrazio is on a distinguished road
Default Re: Need Help finding Beginners guide/tutorial

There are some reasonable tutorials presented by visual studio itself, but I think it is best to make challenges for yourself and search the web for help to overcome it.
Example for a challenge:

Console christmas tree
You ask the user of the program how long of a christmastree he wants in his console and with the input you display a chrismastree of that length. For example:
Input:
5
output (o's aren't visible):
oooox
oooxx
ooxxxx
oxxxxxx
xxxxxxxx

Tip: To overcome this problem you need to learn to read input, to use variables, to write in console, about loops and learn to think in algorithms.
When you get better you can set up more difficult challenges for yourself. Currently I'm making an operating system with more commercial succes than Windows
At some point those challenges might become programs with practical use.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 07-02-2008, 02:47 PM
Xav's Avatar   
Xav Xav is offline
Code Warrior
 
Join Date: Mar 2008
Location: London, England
Posts: 7,432
Last Blog:
Web slideshow in JavaS...
Credits: 1,322
Rep Power: 61
Xav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud of
Send a message via MSN to Xav
Default Re: Need Help finding Beginners guide/tutorial

The Christmas Tree idea is good. At the end of my C# tutorials, I always try to include a program idea to test yourself with, such as a prime number generator.
__________________
[TRUTH] TcM is the best moderator ever! [/TRUTH]
"Valid XHTML is like sex - everybody claims to have the same goal, but everybody has their own tricks and results vary wildly."
Mr. Xav | Website | Forums | Blog
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
  #6 (permalink)  
Old 07-04-2008, 08:04 AM
RobertQQ RobertQQ is offline
Newbie
 
Join Date: Jul 2008
Posts: 7
Credits: 0
Rep Power: 0
RobertQQ is on a distinguished road
Default Re: Need Help finding Beginners guide/tutorial

thanks all. I really like the christmas tree program. It is probably going to take me a while to figure out but I cant wait to get started on it thanks again!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 07-04-2008, 10:45 AM
RobertQQ RobertQQ is offline
Newbie
 
Join Date: Jul 2008
Posts: 7
Credits: 0
Rep Power: 0
RobertQQ is on a distinguished road
Default Re: Need Help finding Beginners guide/tutorial

One last quick question . Do you all know of a site that has a whole bunch of problems like that for beginners? I tried googling it but couldnt find anything. Thanks again!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 07-04-2008, 03:31 PM
Pancrazio Pancrazio is offline
Newbie
 
Join Date: Jun 2008
Posts: 17
Credits: 0
Rep Power: 2
Pancrazio is on a distinguished road
Default Re: Need Help finding Beginners guide/tutorial

Quote:
Originally Posted by RobertQQ View Post
One last quick question . Do you all know of a site that has a whole bunch of problems like that for beginners? I tried googling it but couldnt find anything. Thanks again!!
Some books on programming contain exercises So maybe you can download a beginners guide for C# and get some exercises out of that.
There must be websites with exercises too, but I don't know any.
I can also give you some if you want.
From easy to more difficult, all for console applications:
The first 5 are for some insight in loop structures and algorithms, if you already did the christmas tree with success, skip the first 4.

1. create a number of x's depending on the input of the user in line
input:
5
output:
xxxxx

2. same for 'square'
input:
3
output:
xxx
xxx
xxx

3. triangle
input:
4
output:
x
xx
xxx
xxxx

4. Christmas tree

5. Rhombus
input:
5
output:
oox
oxxx
xxxxx
oxxx
oox

You have to look out first this one, because you will have to validate the input here, the program will not work for some input.

6. Coin flipper: Create a program that generates random x's and o's.
input:
10
example output:
oxoxxxooxo

7. Xav's program: create a program that will return all prime numbers till a certain number.
input:
10
output:
2 3 5 7

8. Create a program that will copy the contents of a txt file containing code with comments leaving the comments out:
input file contains:
Hello // this is a word
Hello, I'm Steeve. /* This is a sentence */
output file contains:
Hello
Hello I'm Steeve.

Tip: in a windows txt file you need "\r\n" to display a new line, not just "\n".

Note: these exercises learn you nothing but loops and basic functions and some algorithmic thinking. If you're able to do this you should begin to learn about cl***es etc.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 07-05-2008, 02:28 AM
PlayaSkater's Avatar   
PlayaSkater PlayaSkater is offline
Learning Programmer
 
Join Date: Aug 2007
Location: Cruzer, US
Age: 17
Posts: 63
Credits: 2
Rep Power: 5
PlayaSkater is on a distinguished road
Default Re: Need Help finding Beginners guide/tutorial

I'm also in the process of learning C#. Like everybody has said, always make up your own examples, it not only helps with your programming skills, but also creativity. You could go through C# Station: C# Tutorial - Introduction. It has examples in all of the subjects that it covers.

Also going through threads like the ones here at codecall and others like c-sharpcorner.com are good for picking up new information since most of the time people will ask for help in creating a program or fixing a couple lines of code.

Hope this helps.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
beginners C# project matty241 C# Programming 44 05-31-2008 11:29 AM
Finding t.A.T.u. (Movie Details for those interested.) kinn The Lounge 9 05-25-2008 02:15 PM
Forums for photoshop design and designers .. also for beginners? navjeet Computer Software/OS 0 08-21-2007 12:29 AM
A site for beginners in the Technology Field littlefranciscan Technology Ramble 2 01-16-2007 07:52 AM
Finding Date NeedHelp C# Programming 3 12-08-2006 04:37 PM


All times are GMT -5. The time now is 08:17 PM.

Contest Stats

Xav ........ 1322.18
MeTh0Dz|Reb0rn ........ 1053.7
morefood2001 ........ 879.43
John ........ 877.37
marwex89 ........ 869.98
WingedPanther ........ 830.24
Brandon W ........ 735.07
chili5 ........ 309.39
Steve.L ........ 236.23
dcs ........ 216.02

Contest Rules

CodeCall Goal

Goal: 100,000 Posts
Complete: 82%

Ads