Could you tell me what this construction is in C #.
Code Golf: the numerical equivalent of an Excel column name
C.WriteLine(C.ReadLine() .Reverse() .Select((c, i) => (c - 64) * System.Math.Pow(26, i)) .Sum());
Although I am new to C # (just two months so far), but since I joined the C # team, I have never seen such chains. It really attracted me , and I want to know more about it.
Please give some idea about this.
c #
Thinking
source share