C# Vocab Examples

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/21

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

22 Terms

1
New cards

object

Dog MYDOG = new Dog();

2
New cards

method

void BARK() {
    Console.WriteLine("Woof!");
}

3
New cards

field

public int AGE = 5;

4
New cards

property

public int AGE {
    get;
    set;
}

5
New cards

instance

Dog PUPPY = new Dog();

6
New cards

constructor

public Dog() {
    AGE = 1;
}

7
New cards

parameter

void Speak(string MESSAGE) {
    Console.WriteLine(MESSAGE);
}

8
New cards

argument

Speak(GREETING);

9
New cards

type

string NAME = "Rex";

10
New cards

value

int LEVEL = 10;

11
New cards

data type

bool ISHAPPY = true;

12
New cards

inheritance

class Puppy : ANIMAL { }

13
New cards

exception

throw NEWERROR;

14
New cards

loop

for(int i = 0; i < 3; i++) {
    COUNT++;
}

15
New cards

array

int[] NUMBERS = { 1, 2, 3 };

16
New cards

list

List<string> NAMES = new List<string>();

17
New cards

statement

AGE = 5;

18
New cards

block

{
    RUN++;
}

19
New cards

scope

{
    int LOCAL = 1;
}

20
New cards

loop iteration

foreach(var ITEM in ITEMS) {
    USE(ITEM);
}

21
New cards

comment

// NOTE

22
New cards

variable

int HEALTH = 100;