Out Parameters must need to declared before they are used in the method which doesn’t seem intuitive.
Now with C# 7.0 we can now make use of Out variable.
Here in our second call to the method we have used out variable named outVariableString which we didn’t have to declare like output parameter.
Hope it helps..