Chapter 5 Flashcards
What is compiler of c sharp
csd (c sharp compiler)
What console.readln do
It gets all input and returns a string
What is escape character
\
What is verbatim character
It is @. It uses at the start of string. When we use it, it disables functionality of \ and take it as a string
What are 2 types of multidimensional arrays
- Jagged Array (arrays of arrays)
2. multidimensional arrays
If I do not give size of an array what C# do
It allocated its size by itself by checking the array length.
The modifier of method ‘static’ do what
It makes static class method and there is no need to instance
What is ref qualifier
Value is passing through reference. And if it modifies the value then value will be modified.
What is out
It becomes out parameter. The method which changes value of that parameter. It sends out the changed value to sender. We use it in case of when we need to return multiple parameters.