Glossary for C#: functions
Learn C# (C sharp) in FREE step-by-step lessons.
arguments: Arguments are the actual values passed to a function when it is called. Parameters are given in the function definition. (Lesson:
Functions in C#)
ceiling busses: Ceiling: How many busses?(Lesson:
Functions in C#)
   
Real world problem to solvecolors, random: A Function to Generate Random Colors(Lesson:
Functions in C#)
   
A function to return a random color using Color.FromArgb(red, green, blue);function area circle: Circle: Write a function to find area(Lesson:
Functions in C#)
   
A function receives the radius and returns the areafunctions: (Lesson:
Functions in C#)
math-drill: Drill on Math Functions Ceiling, Floor, and Round(Lesson:
Functions in C#)
   
Check your understanding of these functionsmath functions: Demonstration of Math Functions(Lesson:
Functions in C#)
   
Shows how math functions might be usedmath functions builtin: Math Functions(Lesson:
Functions in C#)
   
C# has a number of built-in functions and constants that you can use.math functions reference: Microsoft Reference(Lesson:
Functions in C#)
   
C# Math Functionsparameters: Arguments are the actual values passed to a function when it is called. Parameters are given in the function definition. (Lesson:
Functions in C#)
parse text to double: Parse: Convert text to Double(Lesson:
Functions in C#)
   
A user does not always type a numeric value in text box,
parse to get numeric valuerandom colors: A Function to Generate Random Colors(Lesson:
Functions in C#)
   
A function to return a random color using Color.FromArgb(red, green, blue);random numbers: Random Numbers(Lesson:
Functions in C#)
   
Code to declare and use a random numberreturn: Return (Lesson:
Functions in C#)
   
If a function is not void, it returns a value. If you write your own function, the last statement must return a value.tostring function: ToString function instead of + to concatenate(Lesson:
Functions in C#)
   
Compares using + and ToString()try parse: TryParse: Convert text to Double if Numeric(Lesson:
Functions in C#)
   
TryParse to handle numeric errorvoid function BMI: BMI: A Void Function to calculate Body Mass Index(Lesson:
Functions in C#)
   
A void function does not return a valueFull Glossary