I\'m wondering if string.Length in C# is an instant variable. By instant variable I mean, when I create the string:
string.Length
string A = \"\"; A = \"Som
It looks like it is a property of string, which is probably set in the constructor. Since it is not a function, I doubt that it is computed when you call it. They are simply getting the value of the Length property.