Skip to content

Starting Out with C#

Best in textbook rentals since 2012!

ISBN-10: 1576761614

ISBN-13: 9781576761618

Edition: 2005

Authors: James Chegwidden, Tony Gaddis

List price: $131.00
Blue ribbon 30 day, 100% satisfaction guarantee!
what's this?
Rush Rewards U
Members Receive:
Carrot Coin icon
XP icon
You have reached 400 XP and carrot coins. That is the daily max!

Description:

Tony Gaddis' books are among the most widely-used books for students learning to program all over the world.nbsp; In Starting Out With C#, Gaddis makes a very detailed and slow-paced presentation of both programming and C# syntax concepts so all readers will be able to follow along.nbsp; The book includes the hallmark pedagogocial features that readers of Gaddis books have come to expect.
Customers also bought

Book details

List price: $131.00
Copyright year: 2005
Publisher: Addison-Wesley Longman, Incorporated
Publication date: 2/15/2005
Binding: Paperback
Pages: 790
Size: 7.25" wide x 9.00" long x 1.25" tall
Weight: 2.750
Language: English

Introduction to Programming and C#
Introduction
Why Program?
Computer Systems: Hardware and Software
Programming Languages
What Is a Program Made Of?
The Programming Process
Object-Oriented Programming
C# Fundamentals
The Parts of a C# Program
The Write and WriteLine Methods and the .NET FCL
Variables and Literals
C# Data Types
Arithmetic Operators
Combined Assignment Operators
Conversion Between Data Types
Creating Named Constants with const
The string type
Scope
Comments
Programming Style
Reading Keyboard Input
Common Errors to Avoid
Methods
Introduction to Methods
Passing Arguments to a Method
More About Local Variables
Returning a Value from a Method
Problem Solving with Methods
Recursion
Common Errors to Avoid