Online Free Computer Tutorials.: Intermediate

'Software Development, Games Development, Mobile Development, iOS Development, Android Development, Window Phone Development. Dot Net, Window Services,WCF Services, Web Services, MVC, MySQL, SQL Server and Oracle Tutorials, Articles and their Resources

Showing posts with label Intermediate. Show all posts
Showing posts with label Intermediate. Show all posts

Sunday, January 6, 2013

How to Build Flexible and Reusable WCF Services

As you may know, designing and building a flexible and reusable service layer is essential when creating robust multi-tier applications....
Read More

Saturday, January 5, 2013

Window Phone: How to Easily Store User Settings

Here's a base class for Windows Phone apps which I've been using to store user settings. It wraps the IsolatedStorageSettings an...
Read More

Telerik Rad Notification using AJAX

Telerik Rad Notification using AJAX Introduction Today, in this article let's play around with one of the interesting and most useful c...
Read More

Understanding ASP.NET MVC (Model View Controller) Architecture for Beginners

This article is intended to provide basic concepts and fundamentals of ASP.NET MVC (Model View Controller) architecture workflow for be...
Read More

Architecture Guide: ASP.NET MVC Framework + N-tier + Entity Framework and Many More

The Model View Controller (MVC) is an architectural pattern used in software engineering. The pattern isolates "domain logic"...
Read More

Developer Review - Four ASP.NET MVC View Engines

In this Developer Review, we evaluate four view engines available for use with ASP.NET MVC. First, we discuss the role a view engine pl...
Read More

Introducing “Razor” – a new view engine for ASP.NET

One of the things my team has been working on has been a new view engine option for ASP.NET . ASP.NET MVC has always supported the conc...
Read More

Exploring the MVC, MVP and MVVM Design Patterns

Take advantage of MVC, MVP and MVVM Design Patterns to build applications that are easier to test and maintain Design patterns can be us...
Read More

Top 7 Eye-Catchers of Visual Studio 2012

Microsoft did the RTW of Visual Studio 2012 IDE on August 15th 2012--and it came with a handful of new features and nice enhancements. T...
Read More

Improvements to Parallelism in .Net Framework 4.5

Parallelism has become a buzz word in the .NET Framework world, making it important for every developer to keep up to date on the latest...
Read More

Custom Authentication in Silverlight

"Muggle-born have no access to go inside the chamber of secret Harry, and only a heir of Slytherin can open the chamber. Since he i...
Read More

How to determine screen resolution on WP

This is a very common scenario most developers stumble across - they are building an app for Windows Phone and have to target all 3 scre...
Read More

Saving the WP8 Emulator State

Saving the emulator state between runs was one of the feature needed for the Windows Phone emulator, but till now it is not officially s...
Read More

Writing Files in Background on WP8 – Use IsolatedStorageFile

In some situations, you might want to write data to your local application folder from a background agent, such as a PeriodicTask. In Wi...
Read More

Globalization in WPF using ResourceDictionary

This article introduces how to run WPF application in difference languages. we will go through how to create multilingual application. ...
Read More

Silverlight Application with Dispatcher and asynchronous WCF service

This article is about Dispatcher that makes Silverlight application responsive. It demonstrate how Dispatcher allows to update UI of the...
Read More

A Beginner's Tutorial for Understanding Transactions and TransactionScope in ADO.NET

This article is a beginner's tutorial for understanding what are transactions and how can transactions be implemented using .Net fra...
Read More

Design Patterns Part 1 - The Strategy Pattern

A series of articles exploring Design Patterns and creating useful examples in C#, putting the pattern into practice. This series is aim...
Read More

Differences between MVC and MVP for Beginners

In the modern world, an architect who can engineer an efficient decoupled system is considered as an invaluable asset to the company. Th...
Read More

Monday, December 31, 2012

Generations in Garbage Collector

Garbage Collection is a technique that manages memory automatically. In C and C++ we need to cleanup the heap memory explicitly using a ...
Read More