Posts by Rodolpho Chagas • 63 points
2 posts
-
5
votes2
answers106
viewsQ: Differences between variable statements in C#
What is the difference between these statements: Classex xx = new Classex(); var xx = new Classex(); Classex xx; If in the end I can use everything in the same way (methods, properties...) Ex.: I…
-
1
votes4
answers32475
viewsA: Query to catch word after given character
I was researching about CHARINDEX on the Internet and ended up here, so I tried seek a solution to the problem since it has apparently not been solved. REVERSE to invert the characters and CHARINDEX…