Passing parameter as final in C#
- by Ravisha
This might be a duplicate question.But could not find it in search
In java to mark a method parameter as constant we declare it as final whats the equivalent C# keyword?
Like:
public void doSomeThing(final object myObject)
{
//print myobject
}