Posts by Otávio Décio • 656 points
3 posts
-
9
votes4
answers8554
viewsA: How do LTRIM() and RTRIM() in Java?
Source: http://www.fromdev.com/2009/07/playing-with-java-string-trim-basics.html public static String ltrim(String s) { int i = 0; while (i < s.length() &&…
-
44
votes6
answers32712
viewsA: Abstract Class X Interface
An abstract class can contain logic (code), while an interface can only specify which methods or properties (in the case of .NET) a class that implements the interface must define. However, neither…
-
1
votes8
answers45010
viewsA: What is the difference between C# and ASP.NET?
ASP.NET is a "template" (template) language that allows writing an HTML page with replacement directives that will be post-processed by generating a C# or VB.NET program depending on how it is…