Chapter 2 Flashcards
What is a namespace?
A container that holds classes
C# is primarliy organized in what three ways?
Namespaces, classes, and methods
When a piece of data is written into a program’s code, it’s called a…
Literal
What is design time?
Time during which you build the GUI and write the application’s code
The time during which an application is executing is called..
Run time
A file that contains a program’s code is called..
The source code file
What are the 2 source code files in C#?
Program.cs file and Form1.cs file
What does the Program.cs file contain?
The applications start up code; executes when the application runs
What does the Form1.cs file contain?
Code that is associated with the Form1 form that you will normally write code into
What characters do code containers use to enclose code?
Braces { }
What must you do in order for your application to perform any meaningful actions?
Write Code