Posts by Pedro Lins • 27 points
2 posts
-
2
votes5
answers1894
viewsA: Test for string fill
If you want to evaluate whether a string has value, C# has a function of the primitive type itself string. Ex: string.IsNullOrEmpty("abc"); If you want to evaluate whether a string has value,…
-
-1
votes2
answers214
viewsA: Why isn’t this "for" loop infinite?
The int type has a maximum limit. Upon reaching that boundary, the loop is finalized. int = 4 bytes - 32 bits = -2147483648 a + 2147483647 - números inteiros