↧
Introduction to Java Development Kit (JDK)
In order for us to develop Java applications, we need to first install the Java Development Kit (JDK). The JDK contains the necessary tools to compile, execute, debug, document, etc. our programs. The...
View ArticleIntroduction to .NET Framework SDK
When developing applications for the .NET Framework, you’ll most likely use an IDE like Visual Studio, Visual Studio Express, SharpDevelop or MonoDevelop. These tools make it easy to write code and...
View ArticleNamespaces vs Assemblies
The .NET Framework organizes classes (types) in two different levels: namespaces and assemblies. We’ll take a look at the differences between both of them in this post. Assemblies An assembly is the...
View Article