Mutating Strings
Today, we question our beliefs! Is string really immutable? string message = "Hello World!"; Console.WriteLine(message); // Prints "Hello World!" unsafe { int length = message.Length; …
Read more →Blog posts on tech, engineering, and more.
Today, we question our beliefs! Is string really immutable? string message = "Hello World!"; Console.WriteLine(message); // Prints "Hello World!" unsafe { int length = message.Length; …
Read more →Those of us, non-physicists, we do seem to realize that time is eternal. Yet there was a time when time did not exist; tough to comprehend? For us, time is something running on a clock or tracked on a …
Read more →In the recent interviews, I asked the candidates the following question: Is there a difference that I need to consider in the following declarations? Both allocate fixed size array to store integers: …
Read more →A short while ago, I had to write a compelling document for a client about a library that I had developed during my tenure, call it A-Team Library or ATL. Having to learn the “eyes-wide-shut” culture …
Read more →A long time back, in one of my posts here1, I had discussed about Extension Methods2 … in C++; sorta! It seems that the grand daddy, Bjarne Stroustoup3, had read my post, and was impressed. So he has …
Read more →