1/21
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
object
MyClass item = new MyClass(); // -> itemmethod
void DoWork() { Console.WriteLine("Running"); } // -> DoWorkfield
public int score = 7; // -> scoreproperty
public int Speed { get; set; } // -> Speedinstance
Robot unit = new Robot(); // -> unitconstructor
public Robot() { speed = 3; } // -> Robot()parameter
void Send(int code) { Console.WriteLine(code); } // -> codeargument
Send(pinNumber); // -> pinNumbertype
Robot bot = new Robot(); // -> Robotvalue
int level = 10; // -> 10data type
bool isReady = true; // -> boolinheritance
class Sparrow : Bird { } // -> Sparrow : Birdexception
throw new Exception("Error"); // -> throwloop
while(active) { steps++; } // -> whilearray
int[] counts = { 1, 2, 3 }; // -> countslist
List<string> names = new List<string>(); // -> namesstatement
total = total + 2; // -> total = total + 2;block
{ value++; } // -> { value++; }scope
{ int temp = 4; } // -> temploop iteration
foreach(var item in group) { Handle(item); } // -> itemcomment
// NOTEvariable
float energy = 12.3f; // -> energy