Fixed Error in Code (Variable name) (#24168)

This commit is contained in:
AntTAKEOVER
2018-12-07 07:33:20 +05:30
committed by Manish Giri
parent e9587a7a46
commit 048ee477e2

View File

@ -9,7 +9,7 @@ The `return` statement terminates execution of a method inside which it appears
If the `return` statement is inside a `try` block and if there is a `finally` block, then the control is passed to the `finally` block, after which it is returned to the calling method.
## Example
```
```csharp
class Calc
{
static int Sum(int i, int j)