Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Starting to Code

Console.ReadLine

1. Asks the user for information

2. Waits for the enter key

3. Sends back that information

It can be used to pause a program (Won’t continue until enter is hit)

Shortcut: Console.RL

Variables

A variable holds data

A variable can be just defined or given an initial value at its declaration.

A variable type (e.g. string, int, double etc.) and name need to be defined

Convention is to name using camel casing

Section: Our Second Application


The Importance of Planning & Requirements
The first thing a developer should do is plan the application, recognizing:

The steps he can accomplish easily

The steps that require more research

Some requirements will be clear and obvious, others will be vague and
ambiguous. It’s up to the developer to:

Ask questions to clarify the requirements

Fill in any gaps to the best of their ability

A successful application:

1. Works

2. Fulfills all of the requirements given

Untitled 1

You might also like