C# Language is an Object Oriented Programming model language from Microsoft which is evolving with day by day. It is a leading programming language in Microsoft stacks. As per the standard guidelines of this language, it behaves in following manner while making a type(class) ready to work - (1) Default initialization:(2) Default inheritance and (3) Default constructor
[More]
21. December 2018
Amrit
C# , WPF
This article is written to address beginners who want to know how to start with events in MVVM. This article covers the click event for the explanation. Through the given small bullet steps in this article, a novice programmer can easily understand the flow-mechanism by seeing where and how to write the event handling related code part.
There are a lot of frameworks available with WPF like Gala Soft, PRISM and so on; in this article explanation, PRISM framework has been used in WPF MVVM.
[More]
29. August 2018
Amrit
C# , WPF
Key settings that are required to implement centralize localization library used in multiple projects. I faced this issue and doing lot of research didn't find anything fruitful. So I decided to just write these bullet settings that are useful for developers who may get some help from my post.
[More]
16. November 2016
Anil Kumar
C#
The simplest way to transforming a UTF-7 encoded string is to use the .net System.Text.Encoding abstract class. It internally uses System.Security class library to provide the transform we are targeting for like ASCII, BigEndianUnicode, Unicode, UTF32, UTF7, and UTF8.
[More]
29. December 2015
Anil Kumar
C#
Delegate plays an important role in today's programming model where it is extensively used in Parallel Programming, Asynchronous Programming, PLINQ, Events & Callback methods, Func, Action, Predicates and so on.
[More]
19. October 2015
Anil Kumar
C# , MS-SQL , WPF
SQL Server takes significant time to process (long running SQL statements) which leads to block the execution of your .net code i.e. main UI thread.
[More]
19. May 2015
Anil Kumar
C# , WPF
This article is intended to explain you step by step to create a WPF Application. Creating a WPF application is as easy as the creation of other application types in Visual Studio. This walkthrough is based on Visual Studio 2013 edition.
[More]
21. April 2015
Anil Kumar
C#
Microsoft .net framework provides options to seek concurrency with help of asynchronous operations and parallel programming capability by its TPL and BCL libraries.
[More]
Visual Studio is a very powerful IDE and very rich in terms of development tools/plugin. We can integrate MySQL for Visual Studio tool with it to make it able to expose/access MySql objects and data.
[More]
10. February 2015
Anil Kumar
C#
In case of Parallel programming, there must be multiple threads otherwise how can that get processed/done in parallel. In this case programmer have more control over threads/cores of CPUs. If we say that Asynchronous is of no-wait time & continuous execution then this clears itself that we all talking about a Single threaded mechanism.
[More]