Today's C# Tip
Today's C# Quiz
C# Tip Archives
C# Quiz Test
Useful Tools
String Pad for SQL Developers
Guid Generator
HTML Encoder
About
Today's C# Quiz
Quiz
What is local variable in C#?
It can be used anywhere in the program
It can be used anywhere in the class
It can be used in derived class
It can be used within a method that declares the local variable
Tip
Show Tip
Local variable is defined and used in a method.
Answer
Show Answer
4