Does int.Parse uses boxing/unboxing or type casting in C#?
c#
Solution
There's no boxing or unboxing. Why are you asking? The parsing algorithm is much more expensive than a box/unbox operation so you wouldn't "feel" a performance difference even if there were one.
Problem
What happens when i say ``` int a = int.Parse("100"); ``` is there any boxing/unboxung or type casting happening inside the Prse method?