Description
Parameter passing to a function is extremely important in all programming languages. The desire to keep the passed parameter intact forced the compiler designers to add various keywords to the programming languages. This is an issue that the library developers keep quite much, since it gives relief to consumers of library, feeling that the object they pass is intact in return. C/C++ has const and VB has ByVal keyword to achieve this. Indeed, in C/C++ this is a contract rather than a force. Since you can violate constant value and break into its contents anytime in your module. Let's remember the old C style ugly pointer notations and the const keyword, and how we can ignore constant value inside our custom method. The declaration of pch as const assures the caller to MetConpp method that pch object contents cannot be changed by the called function, namely inside MetConpp.
I also fleshed your memories to recognize the various const declarations in various languages.
C++ made our life easier by introducing references. In C++, we can define a const reference to a method as in the following example. When you pass a const reference it is assumed that the inner statements do not modify the passed object. As we know in C++, references are aliases to variables though they represent memory addresses and they are coded as regular variables in terms of syntax. References are syntactic comfort to the life of developers when compared to ugly seeming pointers :
Let's dive into C# now. Implicit [in] parameter modifier provides that value types are not modified in a method. This is really what we want However, in C# the implicit [in] parameter modifer has no effect for references. (Do not confuse this term with the one in C++. References are the name given to instances of classes in C#. all objects are references in C#. Other than that there are value types. Refer to a C# book if you want to learn more about these topics.). But it is not a problem indeed, since as we saw in the C/C++ example, const& is a contract indeed. You can violate this contract on your side outrageously.
There are 2 options however you can do. We can devise a means, as String and StringBuilder counterparts behave.String class does not have a setters and it is immutable with the compiler support.However StringBuilder is mutable class and its objects are references. When we want to pass a const string in the case we have a StringBuilder, we copy the StringBuilder contents to String and pass it as an [in] argument. When we assign something new to a string, a new string is created and its address is reassigned to string again. But String class has an advantage. .NET Framework helps String objects acts as if they are value types, though it is actually a reference. So we can use a similar technique and create our custom immutable class counterparts for our custom classes on demand. Another option is to create Struct counterparts to classes if we need constness as a must. I prefer struct style since structs are leightweight classes, and structs are value types.
In the following sample we declared and defined MyClass (mutable class), OtherMyClass (immutable class), StructMyClass (struct). All the tree objects store the same data and the two latter ones are redundant and actually created for providing constness. OtherMyClass and StructMyClass have constructors of MyClass for easy object copying. To expliclity show whether the parameters are changed, we passed MyClass object to methodconst, OtherMyClass object to methodconst2 and StructMyClass variable to methodconst3. Only methodconst changed the variable's value. So we can say that our remedies seem to work, though they cause plethora. But you know what you will do, when you need constness in C#.