TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About 4.0
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Debasis Saha (8)
Viswanatha Swamy (4)
Amit Choudhary (4)
Vishal Gilbile (4)
Amit Patel (4)
John Charles Olamendy (4)
Satyaprakash Samantaray (3)
Satya Prakash (3)
Vulpes (3)
Rohatash Kumar (2)
Jignesh Trivedi (2)
Mohamed Hasan (2)
Srihari Chinna (2)
Vithal Wadje (2)
Abhimanyu K Vatsa (2)
Shivprasad (2)
Jaish Mathews (2)
Manish Dwivedi (2)
Pradeep Shet (1)
Mukesh Kumar (1)
Nipun Tomar (1)
Jitendra Mesavaniya (1)
Pradeep Chandraker (1)
Vidya Vrat Agarwal (1)
Anuja Pawar (1)
Sarthak Varshney (1)
BALAMURUGAN ALAGUMALAI (1)
Andrew Fenster (1)
Vikas Hooda (1)
Sahil Maheshwary (1)
Reeta Singh Lodhi (1)
Jawed Mohammed (1)
Jasminder Singh (1)
Ashish Shukla (1)
Abhishek Bhat (1)
Urmimala Pal (1)
Shivanand Arur (1)
Sujit Bhujbal (1)
rajesh p v (1)
Abhishek Jaiswal (1)
ashutosh k shukla (1)
Sumit Singh Sisodia (1)
Arkadeep De (1)
Shivam Pandya (1)
Manoj Singh Panwar (1)
Vinoth Rajendran (1)
Akshay Deshmukh (1)
Ish Bandhu (1)
Santhakumar Munuswamy (1)
Saravanan Ponnusamy (1)
Nitesh Kejriwal (1)
Sourabh Somani (1)
Jinal Shah (1)
Manoj Kalla (1)
K V Ramana (1)
Akash Varshney (1)
Anoop Kumar Sharma (1)
Krishnanand Sivaraj (1)
Gaurav Kumar Arora (1)
Mamta M (1)
Andrew Cayo (1)
Mahesh Chand (1)
Shweta Lodha (1)
Related resources for 4.0
No resource found
Parallel Task in .Net 4.0
10/14/2024 6:07:08 AM.
Today I will be talking about a new feature of Parallel Programming that was added to .Net 4.0.
Creating an Entity Data Model (Entity Framework 4.0)
10/1/2024 9:06:15 AM.
The ADO.NET Entity Framework is a new data access platform from Microsoft for writing .NET applications. It is a set of technologies in ADO.NET that helps fill in the space between object-oriented.
Various Ways to Disable ViewState in ASP.Net 4.0
7/18/2024 3:12:37 PM.
Learn how to optimize your ASP.Net 4.0 web applications by effectively managing ViewState. This guide explores various techniques to disable ViewState, improving performance and reducing page load tim
JIT (Just-In-Time) Compiler
6/3/2024 10:09:04 AM.
.NET languages utilize CLR, enabling execution through JIT compiler, converting MSIL to CPU-specific native code during runtime. This JIT process ensures optimal performance, compiling IL to native co
Additional Tokenizer Support in ML.NET
6/3/2024 4:52:40 AM.
Tokenization is a fundamental component in the preprocessing of natural language text for AI models. Tokenizers are responsible for breaking down a string of text into smaller, often referred to as to
Association in Entity Framework
5/14/2024 11:00:56 AM.
Entity Framework manages associations between entities in databases, facilitating relationships like one-to-one, one-to-many, and many-to-many. Through navigation properties and various mapping strate
ASP.Net 4.0 ClientId
4/23/2024 11:36:43 AM.
In ASP.Net 4.0, ClientId is a crucial feature enabling the unique identification of HTML elements rendered by server controls. It facilitates client-side scripting by providing a predictable naming co
Diagnostic And Performance Monitoring in .Net 4.0
4/22/2024 8:23:32 AM.
Explore .NET 4.0's enhanced performance monitoring capabilities, including application domain-level resource tracking for memory and processor usage. Utilize Hosting APIs and Event Tracing for Wi
Understanding .NET Client Profile
4/22/2024 8:22:31 AM.
.NET Client Profile, tailored for Windows Forms apps, offers speedy deployment with minimal footprint. Microsoft trims features like ASP.NET, MSBuild, enhancing package efficiency. Removed from .NET 4
Creating a Simple Application Using MVC 4.0
3/29/2024 9:57:04 AM.
In this article, we will learn to build a basic web application using MVC 4.0, a powerful framework for web development. Utilize ASP.NET and C# in Visual Studio to create a structured Model-View-Contr
Code Only Design using ADO.NET Entity Framework 4.0
3/7/2024 8:43:43 AM.
This code snippet implements Code Only Design in ADO.NET Entity Framework 4.0, connecting to a SQL Server database, configuring entities, and binding data to a GridView with exception handling.
.NET Core Console Applications On Mac OS X, Ubuntu 14.04 And Windows 10 - Part Two
1/5/2024 9:31:32 AM.
.NET Core Console Applications On Mac OS X, Ubuntu 14.04 And Windows 10.
Bind Data In WebGrid Control Using Stored Procedure In ASP.NET MVC 4.0 And SQL Server
12/7/2023 9:19:11 AM.
In this article, you will learn how to bind the data in WebGrid control, using stored procedure in ASP.NET MVC 4.0 & SQL Server 2012.
NSX-T 4.0 Features and Updates: Revolutionizing Network Virtualization and Security
10/20/2023 10:11:46 AM.
This article introduces readers to VMware NSX-T 4.0, explores its key features and updates, and provides examples of how it impacts network virtualization and security. You can further expand on each
Dynamic Programming In .NET 4.0
10/20/2023 8:28:06 AM.
Dynamic programming is a fundamental concept in computer science and software engineering, particularly within the context of algorithmic problem solving. In .NET 4.0, developers have access to powerf
Upload Image And Create Thumbnail In C# 4.0
10/20/2023 6:39:13 AM.
In C# 4.0, developers can leverage advanced techniques to upload images and create thumbnails efficiently. This process is vital for web applications, enabling users to upload images while optimizing
Dynamic Type Array In C# 4.0
10/10/2023 11:59:53 AM.
Dynamic Type Arrays in C# 4.0 offer flexibility by allowing the creation of arrays that can store different data types within the same array. This feature is especially useful when dealing with hetero
Optional Parameters and Named Arguments in C# 4.0
9/22/2023 10:19:56 AM.
Optional parameters and named arguments have been a part of C++ and VB.Net for years. They are new to C# in version 4.0.
How To Create Mixin Using C# 4.0
9/12/2023 4:54:21 AM.
A mixin is a class which adds functionality to other classes but which cannot itself be instantiated.Creating mixins in C# 4.0 is not a built-in language feature, but you can achieve mixin-like behavi
How To Configure SMTP O365 Migration Using TLS 1.2 For SQL Database Mail
7/6/2023 4:49:23 AM.
This article will explain to you how exactly you need to configure TLS 1.2 as a default protocol and setup SMTP O365 migration using SQL 2012 Database mail and above versions for Windows Server 2012 a
Entity Framework Console Applications With SQL Server Compact
1/16/2023 6:43:16 AM.
Microsoft SQL Server Compact Edition is an embedded database system that allows us to integrate it in our Web, Desktop and Mobile applications.
Implementing a Double-Ended Queue (or Deque) in C#
8/29/2022 6:20:25 AM.
In this article I will be demonstrating an implementation of a Double-Ended Queue (or Deque) in C#.
Marquee a Text in C#.Net 4.0 Window Form Application
8/23/2022 10:36:31 AM.
In this article, I will explain how to marquee text in window form application.
MP3 Media Player in C#
2/23/2022 9:16:13 AM.
In this article I am going to describe how to make MP3 player in c# .net.
.NET 4.0 MEF FAQ (Socket, Plug and Extension)
4/7/2021 5:23:12 AM.
This FAQ deep dives in to .Net 4.0 MEF fundamentals (Import and Export) and also explains when to use MEF over DI / IOC. This article also explains step by step on how to use MEF in various technologi
PLINQ Powered by TPL in .Net 4.0 C#
3/24/2021 9:36:35 AM.
My previous post discussed the TPL library and its uses to create the scalable applications. Another way to incorporate the parallel task into your .Net applications is through PLINQ.
New Features in MVC 4.0
3/17/2021 6:59:18 AM.
In this article, you will learn about the new features in MVC 4.0.
EmptyDataTemplate in GridView Or Data Controls in ASP.NET 3.5 or 4.0
2/24/2021 11:14:34 AM.
How to display a table when no records are present in the database.
Logging Application Block
2/17/2021 7:04:07 AM.
In this article we will see how to configure logging.
Sending Emails With Bcc and CC Using ASP.Net C#
2/16/2021 5:36:49 AM.
In this article, we will learn about how to send emails using Asp.net with BCC and CC
URL Routing in ASP.Net 4.0
2/15/2021 11:54:12 AM.
URL Routing is the process of intercepting an incoming Web request and automatically redirecting it to a different URL. This article discusses the various techniques for implementing URL Routing.
Custom Error Reporting in ASP.NET Using C# .NET
2/12/2021 7:40:22 AM.
The title sounds interesting, right? So, in this article we are going to discuss custom error reporting in an ASP.Net application.
Named and Optional Parameters in C#
2/9/2021 6:39:40 AM.
This article explains named and optional parameters in C#.
Support for Lazy Initialization in .Net 4.0
2/5/2021 5:40:42 AM.
The Lazy initialization can be seen in designing the singleton pattern where we can have static readonly property in a nested class that initializes the singleton object in a Lazy way.
Introduction to New Methods in System.IO.File in .Net 4.0
2/5/2021 5:25:55 AM.
In this article we are looking the improvements made as part of .NET 4.0 which made the file handling more flexible and fast using File class.
CAS (Code Access Security) & .NET 4.0 Security Model FAQ (With Full Video Demonstration)
2/3/2021 9:57:23 AM.
This article first starts with the basic concepts of CAS like evidence, permission, code groups and caspol.exe. It then moves ahead to demonstrate how CAS can be implemented in real world. This articl
Nested Repeater Control in ASP.Net 4.0
2/3/2021 6:34:32 AM.
Toady in this article we are basically going to learn about how we can nest repeater control within one another.
Features in ASP.NET 4.0
1/19/2021 5:09:05 AM.
ASP.NET 4.0 includes enhancements in many areas. This article is an overview of the new and major improvements that are included in the ASP.NET 4.0.
Introduction to MEF
1/18/2021 10:09:45 AM.
MEF stands for Managed Extensible Framework. It is part of .Net 4.0 and is useful for building extensible applications.
Inter-process Communication Between Managed Process
1/18/2021 10:04:19 AM.
This article explains Memory Mapped Files for inter-process communication.
Portable Class Library in .NET 4.0/4.5
1/16/2021 10:49:10 AM.
Few days back I was working windows phone application as usual I created class library project for keeping separate business login. But I realize we cannot add as a reference normal class library in t
Entity Framework 4.0 TPH : Part 2
1/14/2021 9:53:09 AM.
In OOP, we use inheritance to reduce unnecessary code. We can also archive inheritance in Entity Framework.
Basics of Managed Extensibility Framework
1/11/2021 11:26:06 AM.
The objective of this article is to present a new feature of .NET 4.0 which is known as Managed Extensibility Framework.
Caching Support All Types of .NET 4.0 Application
1/11/2021 7:50:17 AM.
This article shows how to implement data caching in a Console Application, Windows Presentation Foundation Application and other .NET Applications other than ASP.NET application using the .NET 4.0 and
Asynchronous Tasks and Synchronization on UI TPL .Net 4.0
1/6/2021 11:15:23 AM.
Using TPL for parallel programming is now a cup of cake. It made life easier for those who are new to multithreaded programming.
Using Tuples With .Net 4.0
1/1/2021 5:29:46 AM.
In this article let me explain the tuples world in a C# 4.0 scenario.
Parallel Programming Using New TPL Library in .Net 4.0
11/26/2020 4:40:39 AM.
With the .Net 4.0, you are provided with the brand new parallel programming language library called “Task Parallel Library” (TPL). Using the classes in the System.Threading.Tasks namespace, you can bu
Using Memory-Mapped Files
11/23/2020 6:39:34 AM.
MemoryMappedFile is an interesting new class in version 4.0 of the .NET Framework which resides in the System.IO.MemoryMappedFiles namespace.
SignalR - Simple Chat Application in C#
11/5/2020 8:28:45 AM.
Hello friends, today I am going to explain to you how to create a simple chat application using SignalR.
Model-First Design using ADO.NET Entity Framework 4.0
11/1/2020 8:28:54 AM.
In this article we are going to see the second most importment part of the ADO.NET entity framework 4.0.
.Net Framework Features From .Net 2.0 To .Net 4.5
5/19/2020 12:47:50 AM.
This article discusses the features introduced in Microsoft .Net Framework 2.0, 3.0, 3.5, 4.0 and th newly introduced 4.5 framework.
C# 4.0 - Named Parameters
3/6/2020 1:29:33 AM.
C# 4.0 has introduced a number of interesting features which includes Optional Parameters, Default Values, and Named Parameters.
HTML5 vs HTML4.01
12/16/2019 4:08:43 AM.
This article will compare a little bit between the old HTML4.01 and the new HTML5, on some basis.
WCF Discovery in .NET 4.0
9/30/2019 1:38:27 AM.
Windows Communication Foundation has introduced a new feature of WCF; Discovery and with the help of this feature we can access the other service.
New Features of WCF 4.0: Part V
9/26/2019 5:28:49 AM.
Illustrating WCF 4.0 feature explaining the principles and showing some examples.
New Features of WCF 4.0: Part II
9/26/2019 4:52:02 AM.
Here we will see each WCF 4.0 features explaining the principles and showing some examples.
New Features of WCF 4.0: Part I
9/26/2019 4:45:05 AM.
In this article, I will illustrate each WCF 4.0 feature explaining the principles and showing some examples.
New Features of WCF 4.0: Part IV
9/26/2019 4:08:21 AM.
In this series of article, I will illustrate WCF 4.0 feature explaining the principles and showing some examples.
Create Restful WCF Service API
9/25/2019 12:12:39 AM.
In this article, I am going to explain to you how to implement restful service API using WCF 4.0 . The Created API returns XML and JSON data using WCF attribute.
WCF Routing Service in .NET 4.0
9/20/2019 3:28:54 AM.
WCF Routing Service is a new feature in .NET 4.0 frameworks. The most basic use of the Routing Service is to aggregate multiple destination endpoints to reduce the number of endpoints exposed to the c
Xamarin.Forms 4.0 Collection View
7/15/2019 10:00:06 AM.
In this article, you will learn about Collection View in Xamarin Forms 4.0.
Image Slider (From Folder, Without Database) In MVC 4.0
7/2/2019 10:31:05 AM.
In this post, we will learn how to create an HTML jQuery CSS slider where images are bound from a specific folder.
Send SMS Using C# .Net
5/21/2019 4:34:51 AM.
Here you can send SMS using the way2sms client library from your very own C# .Net Web/Window Application
Learn Angular 4.0 In 10 Days - Day One
4/7/2019 8:47:50 PM.
In this detailed tutorials, I will teach you Angular 4 in 10 days. This part is day 1 of Angular learning.
Creating Templates in Expression Web 4
12/13/2018 5:09:44 AM.
In this article you will learn how to create a Dynamic Web Template by yourself.
Bot V4 - Why Bot Emulator Is Displaying Same Message Twice Initially
11/21/2018 6:14:10 AM.
This video explains why the Bot emulator displays the same message twice initially.
Develop Chat Bot Using Microsoft Bot Builder SDK V4 - Part Two - Manage Conversation Using Multi-Step Dialog
9/7/2018 9:19:49 AM.
In previous article, we have discussed how to kick-start a chatbot development using Microsoft Bot Builder SDK version 4. Now we are going to implement guided chatbot conversation flow using Dialogs l
Bundling in ASP.Net 4.0
8/29/2018 5:08:31 AM.
In ASP.Net 4.5 there is a new feature called Bundling. Bundling bundles multiple files into a single file.
Introduction to WCF
8/21/2018 1:05:12 AM.
This article explains WCF and with an evaluation. WCF is a platform for building distributed businesses and deploying services among various endpoints in Windows.
Canceling Long Running Task Using Cancellationtokensource In .NET
7/17/2018 10:20:12 AM.
In this article, we will learn How to cancel or interrupt the Long Running Task using a Cancellationtokensource method in .NET 4.0.
Learn Angular 4.0 In 10 Days - Route Process - Day Nine
3/8/2018 9:32:03 AM.
In this article, we will discuss about the route process for a single page application in angular 4.0.
Learn Angular 4.0 In 10 Days - Service (Dependency Injection) - Day Seven
3/3/2018 5:05:33 AM.
In this article, we will discuss about Service and Dependency Injection in Angular 4.
Learn Angular 4.0 In 10 Days - Pipes And ViewChild - Day Five
2/4/2018 10:36:09 PM.
In this article, we will discuss about the pipes and view child concepts in Angular 4.0.
Learn Angular 4.0 In 10 Days - ngForms And ngContent - Day Six
1/17/2018 2:45:01 PM.
In this article, we will discuss about the ngForm and ngContent in Angular 4.0
Learn Angular 4.0 In 10 Days - Directives - Day Four
1/17/2018 1:43:23 AM.
A Directive modifies the DOM to change appearance, behavior or layout of DOM elements. Directives are one of the core building blocks Angular 4 uses to build applications. In fact, Angular 4 component
Learn Angular 4.0 In 10 Days - Data Binding - Day Three
1/9/2018 2:03:33 AM.
In this article, we will discuss data binding in Angular JS 4.0
Learn Angular 4.0 In 10 Days - Component - Day Two
12/21/2017 5:40:32 AM.
In this article, we will discuss about component concept in Angular 4.0.
HTTP Error 404.0 0 Not Found in MVC
6/26/2017 7:09:30 AM.
The error HTTP Error 404.0 - Not Found in MVC is a common error we get while running websites and performing any CRUD operation. I attempt to describe the fix here that will satisfy most requests.
Ajax Client Side Framework Failed to Load in IIS7
6/26/2017 5:21:39 AM.
This article explains resolution of the error AJAX client-side framework failed to load in IIS7 using ASP.Net 4.0.
.NET Core Console Applications On Mac OS X, Ubuntu 14.04 And Windows 10 - Part Four
6/7/2017 11:31:08 PM.
.Net Core Console Applications On Mac OS X, Ubuntu 14.04 And Windows 10.
.NET Core Console Applications On Mac OS X, Ubuntu 14.04 And Windows 10 - Part Three
6/7/2017 12:03:53 AM.
.Net Core Console Applications On Mac OS X, Ubuntu 14.04 And Windows 10.
.Net Core Console Applications On Ubuntu 14.04 And Windows 10
5/24/2017 4:50:48 PM.
.Net Core Console Applications On Ubuntu 14.04 And Windows 10.
What's New In Angular 4.0
3/27/2017 9:54:53 AM.
In this article, I am explaining what is new in Angular 4.0.
Angular 4.0 Kickstarter
3/27/2017 5:51:29 AM.
In this article, you will learn about Angular 4.0.
URL Rewriting In ASP.NET 4.0/ 4.5 WebForm
3/8/2017 4:01:26 PM.
In this article, you will learn about URL rewriting in ASP.NET 4.0/ 4.5 WebForm.
Control Validation And User Custom Validation Setting In ASP.NET MVC 4.0
2/9/2017 12:30:24 PM.
In this article, you will learn about control validation and user custom validation setting in ASP.NET MVC 4.0.
Apply Latest Google reCAPTCHA Using ASP.NET MVC 4.0 In Your Real Time Project
2/2/2017 2:53:44 PM.
In this article, you will learn how to apply the latest Google reCAPTCHA using ASP.NET MVC 4.0 in your real time project.
Stored Procedures In ASP.NET MVC
12/22/2015 12:38:08 PM.
In this article, we are going to implement Create, Retrieve, Update, and Delete (CRUD) operations using stored procedures in ASP.NET MVC 4.0.
Lazy Loading In C# 4.0 (Object On Demand)
10/13/2015 8:00:11 AM.
In this article you will learn about Lazy Loading in C# 4.0 (Object On Demand).
Creating First Application In ASP.NET MVC 4.0
10/3/2015 11:54:14 AM.
In this Article, we will learn how to create first application in ASP.Net MVC 4.0
Creating Multiselect DropDownList Control in ASP.NET 4.0 Using Bootstrap
9/7/2015 2:02:13 PM.
In this article you will learn how to create Multiselect DropDownList Control in ASP.NET 4.0 using Bootstrap.
Charting in ASP.Net 4.0
4/22/2015 3:28:21 PM.
This article shows how to do Charting in ASP.NET 4.0.
Create HTTP Service Using ASP.Net Web API
3/20/2015 12:56:52 PM.
In this article I will explain how to create a HTTP Service using the ASP.Net Web API.
Covariance and ContraVariance in C# 4.0
12/14/2014 4:07:39 PM.
This entire article explans Covariance and Contravariance, including what the issues were with development before these two.
Checked Keyword in C# 4.0
10/17/2014 3:27:29 PM.
This article is all about understanding the “checked” keyword in C# 4.0.
Graphics in Silverlight 5: Part III
9/4/2014 6:44:27 AM.
In the third part of this series, we shall continue exploring other Shape elements. We begin with the Polygon.
Simple Library to Create Excel Worksheets and Convert to PDF in C# And ASP.Net
9/1/2014 3:27:03 PM.
This is a very simple library to create Excel worksheets and convert them to PDF in C# and ASP.NET.
Understanding Covariance and Contravariance in C#
2/15/2014 11:05:03 AM.
Covariance and contravariance features were introduced in C# 4.0.
Dynamically Selecting DataTemplate For WPF ListView: Solution 2
2/6/2014 12:22:47 PM.
In this article, I am discussing an alternative way to dynamically select a DataTemplate for a WPF ListView.
Consuming Web API in Windows Store Apps
5/1/2013 5:35:08 AM.
In this article I am going to explain how to consume an ASP.Net Web API in a Metro style APP.