I came across a question \"How can one reverse a number as an integer and not as a string?\" Could anyone please help me to find out the answer? Reversal should reverse the
You can do something like this.
Convert.ToInt32(new string(num.ToString().Reverse().ToArray()));