int type exceeding values loop

There is an interesting fact about the Integer type in C# in the cases where its values exceed outside of the limits. C# wraps around the int values and if you exceed the max value it starts from the min again. I will best illustrate this with the example below: Lets use the 32 bit … Continue reading int type exceeding values loop

Parsing text from PDF using c#

While working on a project, I came across a requirement to extract some information from a PDF document. The tricky part was that only particular pieces were needed and not the whole text. Technology-wise I was using .NET as a platform and C# as a programming language. I was thinking of a way to accomplish … Continue reading Parsing text from PDF using c#