C# Vocab Examples

0.0(0)
studied byStudied by 1 person
call kaiCall 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.

Last updated 9:48 AM on 11/26/25
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

22 Terms

1
New cards

object

MyClass item = new MyClass(); // -> item

2
New cards

method

void DoWork() { Console.WriteLine("Running"); } // -> DoWork

3
New cards

field

public int score = 7; // -> score

4
New cards

property

public int Speed { get; set; } // -> Speed

5
New cards

instance

Robot unit = new Robot(); // -> unit

6
New cards

constructor

public Robot() { speed = 3; } // -> Robot()

7
New cards

parameter

void Send(int code) { Console.WriteLine(code); } // -> code

8
New cards

argument

Send(pinNumber); // -> pinNumber

9
New cards

type

Robot bot = new Robot(); // -> Robot

10
New cards

value

int level = 10; // -> 10

11
New cards

data type

bool isReady = true; // -> bool

12
New cards

inheritance

class Sparrow : Bird { } // -> Sparrow : Bird

13
New cards

exception

throw new Exception("Error"); // -> throw

14
New cards

loop

while(active) { steps++; } // -> while

15
New cards

array

int[] counts = { 1, 2, 3 }; // -> counts

16
New cards

list

List<string> names = new List<string>(); // -> names

17
New cards

statement

total = total + 2; // -> total = total + 2;

18
New cards

block

{ value++; } // -> { value++; }

19
New cards

scope

{ int temp = 4; } // -> temp

20
New cards

loop iteration

foreach(var item in group) { Handle(item); } // -> item

21
New cards

comment

// NOTE

22
New cards

variable

float energy = 12.3f; // -> energy