C# and .NET Architecture

C# and .NET ArchitectureWe will begin by going over what happens when all code (including C#) that targets .NET is compiled and run. Once we have this broad overview, we will take a more detailed look at the Microsoft Intermediate Language (MS-IL), the language which all compiled code ends up in on .NET. In particular, we will see how MS-IL, in partnership with the Common Type System (CTS) and Common Language Specification (CLS) works to give us interoperability between languages that target .NET. We”ll also discuss where common languages (including VB and C++) fit into .NET.
Read more

Java Media Framework basics

The Java Media Framework (JMF) is an exciting and versatile API that allows Java developers to process media in many different ways. This tutorial provides an overview of some of the major features of JMF, mainly through the use of working examples. Upon completion of this tutorial, you will understand the major players in the JMF architecture. You also will have worked directly with JMF, using live examples and source code that may be extended for more specific purposes.
Read more