C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Ramesh Kartik(11)
George (4)
Nirav Daraniya(4)
Jasminder Singh(4)
Vipin Mittal(3)
Nishant Mittal(3)
Sandhiya Priya(2)
Jitendra Mesavaniya(2)
Rikam Palkar(2)
Tural Suleymani(2)
Rupesh Kahane(2)
Mangesh G(2)
Mahesh Chand(2)
Maulik Kansara(2)
Satyaprakash Samantaray(2)
Rehman Shahid(2)
Ankit Kanojia(2)
Ankit Bansal(2)
Ajay Narkhedkar(1)
Deepika Sawant(1)
Jay Krishna Reddy (1)
Jin Necesario(1)
Balaji Thilagar(1)
Sardar Mudassar Ali Khan (1)
Sanjay Kumar(1)
Anandu G Nath(1)
David Mccarter(1)
Dhanapal Chandran(1)
Ajay Kumar(1)
Ashish Makhija(1)
Sai Kumar Koona(1)
Varun Setia(1)
Dinesh Gabhane(1)
Daniel Gomez(1)
Vijay K(1)
Debasis Saha(1)
Oleg Litvinov(1)
Sagar Gavand(1)
Sandesh Salunke(1)
Sarathlal Saseendran(1)
Hitanshi Mehta(1)
Siddhesh Chalke(1)
Guest User(1)
Sathiyamoorthy S(1)
Hemant Panchal(1)
Surya Narayan Barik(1)
Kailash Chandra Behera(1)
Sundaram Subramanian(1)
Shubham Jain(1)
Chamali Perera(1)
Jasbeer Singh(1)
Bikesh Srivastava(1)
Rafnas T P(1)
Sibeesh Venu(1)
Akshay Phadke(1)
Allen Oneill(1)
Francis Susaimichael (1)
Shamim Uddin(1)
Joginder Banger(1)
Kumar Bhimsen(1)
Mahsa Hassankashi(1)
Rion Williams(1)
Praveen Kumar(1)
Bhuvanesh Mohankumar(1)
Nitin Pandit(1)
Resources
No resource found
Learn Data Types in C#
Dec 10, 2025.
This article provides a complete and descriptive guide to data types in C#. It explains value types, reference types, nullable types, numeric types, boolean, character types, strings, records, arrays, enums, structs, dynamic types, object types, pointer types, and memory behavior in C#. The article also covers stack vs heap storage, best practices, and clear examples, making it ideal for beginners and professional .NET developers who want to understand C# fundamentals in depth.
How to Create a WCF Web Services in C# .NET Core
Dec 05, 2025.
Learn how to seamlessly integrate WCF web services into your C# .NET Core projects using Visual Studio's Connected Services feature. This guide provides a step-by-step walkthrough.
Difference between WCF and Web API
Nov 17, 2025.
Explore the key differences between WCF and Web API for building service-oriented applications. Understand their strengths, configurations, and RESTful support.
WCF Service for Local Device Integration and Cloud API Interaction in C#
Oct 31, 2025.
Integrate local devices with cloud APIs using WCF in C#. Learn to build a secure, reliable middleware for seamless data exchange between Windows devices and cloud services.
Expose an On-Premises WCF REST Service to an External Client Using Azure Relay
Oct 31, 2025.
Securely expose on-premises WCF REST services to external clients using Azure Relay. Avoid VPNs and inbound firewall rules with this practical tutorial.
🌐 Understanding WCF Service in .NET with Example and Benefits
Oct 27, 2025.
Explore WCF in .NET! Learn to build robust, service-oriented applications with this comprehensive guide. Includes examples, benefits, and architecture overview.
Beyond Boundaries: Unlocking the Power of WCF in Distributed Systems
Oct 07, 2025.
Explore the power of Windows Communication Foundation (WCF) for building robust distributed systems. Learn about WCF's core components, key features like interoperability and security, and its use cases in enterprise applications. Discover best practices and compare WCF with modern alternatives like RESTful APIs and gRPC. Understand why WCF remains relevant for legacy systems and mission-critical applications requiring SOAP and advanced bindings.
Using Enums as Strings in EF Core
Aug 31, 2025.
Learn how to store enums as strings in EF Core for improved database readability and maintainability. Explore the pros, cons, and step-by-step implementation.
TypeScript Essential Features
Oct 07, 2024.
TypeScript offers essential features that enhance JavaScript development, including static typing, type inference, and support for interfaces and generics. It provides tools like classes, enums, and modules, enabling better code structure.
Understanding the Flag Enums in C#
Aug 21, 2024.
The [Flags] attribute in C# allows an enum to represent a combination of values using bitwise operations. This is useful when an enum needs to store multiple values simultaneously. By applying [Flags], enum members can be combined using bitwise OR, and specific values can be checked with bitwise AND or HasFlag.
Using String-Based Enums in C#
Jun 10, 2024.
In many applications, it is necessary to represent enumerations with string values rather than their default integer values. This can be particularly useful when working with JSON, XML, or other data formats where string representations are more meaningful or required.
Enumerations or enum in C#: An Advanced Guide
Apr 09, 2024.
In the dynamic landscape of software development, enums stand as a robust tool for encapsulating a fixed set of related constants. In this comprehensive guide, we'll delve into the advanced capabilities of enums in C#, exploring their practical implementation through a project management scenario.
Enums in C#: Syntax, Usage, and Best Practices
Mar 26, 2024.
In C#, enums (short for enumerations) offer a powerful tool for developers to define a set of named integral constants. In this article, we'll delve into the fundamentals of enums in C# and explore their syntax, usage, benefits, and practical examples.
Establishing Communication Between Executable Files Using TCP/IP
Mar 19, 2024.
WPF apps use various IPC methods like Named Pipes, WCF, TCP/IP Sockets. TCP/IP sockets offer cross-platform communication with advantages like reliability but face complexity and firewall issues. Steps include server/client development, execution instructions. Use CommonHelper for collaboration.
How To Create a WCF Service
Dec 26, 2023.
How can I create a WCF service that manages employee details while interacting with an SQL database, including the necessary SQL table script for employee information storage?
Design a Snake game in Blazor
Sep 22, 2023.
The Snake Game, with its roots tracing back to the 90’s arcade era. Thanks to Blazor, Let's give this timeless gem a new home on your web browser.
Real World Coding Issues - Design, Diagnostics and Other Common Code Issues
Aug 01, 2023.
In this article, I will discuss common coding issues that I frequently encounter in the projects I work on. These issues fall into the "Design" and “Diagnostics” category of code analyzers.
Understanding Bitwise Enums in C#
Jun 15, 2023.
Understanding Bitwise Enums in C#: Efficient and Flexible Flag-Based Enumerations
Mastering C# Enums: An Essential Guide with Examples
Jun 13, 2023.
Types of WCF Contract
Jun 05, 2023.
In WCF(Windows Communication Foundation), contracts play an essential role. WCF Contracts can be defined as what the service is for and what action it can perform.
How I Use Enums In My Practice
Mar 28, 2023.
In this article, you will learn how I use enums in my practice.
Differences Between WCF And Web API. Which One To Choose?
Oct 26, 2022.
Is it worth learning WCF? Is WCF dead? What are the differences between WCF and Web API? When should I use WCF and when should I use Web API?
Creating An Extension Method To Get Enum Description
Mar 30, 2022.
This article will take you down the rabbit hole to understand the extension methods in C#.
Working With SmartEnums In C#
Dec 09, 2021.
This article illustrates how to add power to the default Enums to make it more Smarter Enums in C#.
Exploring Enums And Ways Of Implementing In Different Layers Of Application
Aug 30, 2021.
In this article, you will learn how to explore Enums and ways of implementing in different layers of application.
Fundamentals Of Typescript - Basic Concepts
Apr 27, 2021.
In this article, you will learn about Fundamentals of Typescript - basic concepts.
WCF (4), RIA Services
Apr 14, 2021.
This discuss a WCF related service, RIA service.
WCF (1), Basics
Apr 12, 2021.
Describe WCF Basic concept, such as What WCF is, Why, Architecture
WCF (2), Contracts In Various Types
Apr 12, 2021.
In this article, you will learn how to describe WCF Contracts in Various Types.
WCF (3), Bindings And Channel Stack
Apr 12, 2021.
This article discuss Bindings and Channel Stack in WCF in more details
Working with WCF Services through ASP.NET and DotVVM (A step-by-step guide)
Sep 23, 2020.
Enums In Swift
Jun 05, 2020.
In this article,you will learn about enums in swift.
Insert Data Into Azure Table Storage Using ASP.NET Core Application
Apr 28, 2020.
Learn to store data in Azure Table Storage with ASP.NET Core or console applications. Explore Azure Storage concepts, entity structure, and access methods for efficient data management.
Increase Performance with an Object Pool or Why Singleton May Cause Performance Issues
Feb 23, 2020.
When creating a Singleton, think about if an Object Pool should be used instead.
Enum In Typescript
Jan 31, 2020.
Enum in Typescript defines a set of named constants, either numeric or string-based. It simplifies code readability and maintenance by providing a distinct set of values. Types of enums include Numeric, String, Heterogeneous, and Const enums. They are used to define and organize related constants, enhancing code clarity and maintainability.
What is Enum And Why Use Enum
Nov 06, 2019.
In this article, we will learn about enum and why we use an enum.
gRPC Using C# And .Net Core - Day One
Oct 21, 2019.
This is a detailed discussion on how to get started with gRPC using C# and .Net Core.
WCF Message Security Using Certificates
May 23, 2019.
In this article, you will learn about WCF Message Security using certificates.
Enable SOAP And REST On Same WCF Service And Contract
Dec 07, 2018.
In this post, we will see both SOAP and REST enabled in same WCF service using same contract. People may think, WCF is an outdated technology after Web API became so popular. But I feel, we can still use WCF for many occasions. That is the reason behind I write this post.
Why Should We Use WCF?
Dec 04, 2018.
WCF stands for Windows communication foundation. Learn why should we use WCF.
Top 7 C# Enum Code Examples
Oct 31, 2018.
List of top questions and answers on C# enums.
Custom MarkupExtesion For Binding Enum To ComboBox In WPF
Sep 25, 2018.
In this article, you will learn about custom MarkupExtesion for binding enum to ComboBox in WPF.
Show User Friendly Enum Value Into The Combobox
Aug 07, 2018.
In my previous article, we have learned that how to bind combobox directly with enum.
How to loop through all enum values in C#
Jun 19, 2018.
Here is code example of how to iterate through all enum values in C#.
Design Tip - Avoid Enum Types In Domain Layer
May 22, 2018.
An enum is a special value type that lets you specify a group of named numeric constants. They can help make code more readable, as opposed to using int to represent constants or flags.
WCF And ListView Insert Update And Delete Rows In ASP.NET
Apr 09, 2018.
In this article you will learn how to edit, update and delete in ListView. First drag and drop ListView. In ListView, next open Default.aspx source code. To make a column in Listview use <LayoutTemplate>. Here first I created a table name 'Product' in my database. It contains 5 columns: ProductId, ProductName,ProductLocation,ProductQuantity, and ProductPrice.
Bind Combobox With Enum Using ObjectDataProvider WPF MVVM
Mar 24, 2018.
Learn how to bind enums directly to a combo box in WPF MVVM using ObjectDataProvider. No more programmatic binding; use XAML with ObjectDataProvider for efficient enum binding.
ASP.NET Web API With Swagger
Feb 06, 2018.
ASP.NET Web API is an extensible framework for building HTTP based services that can be accessed in different applications on different platforms such as web, windows, mobile etc. It is like a web service or WCF service but the exception is that it only supports HTTP protocol.
Pro Tips To Load Image From Image Assest
Jan 05, 2018.
In this article, we will see how we can categorize our images in our iOS project and load them more effectively without moving to Image Assets all time
Enable Other Protocols (TCP, PIPE, MSMQ etc.) In IIS
Dec 29, 2017.
Learn how to expand Windows IIS beyond HTTP, HTTPS, and FTP to include TCP and PIPE protocols. Follow steps to enable these protocols via Control Panel and IIS settings, enhancing connectivity options for your applications seamlessly.
Swift Programming - Zero To Hero - Part Ten
Dec 15, 2017.
In this article, I have shared Enumeration concept in Swift Programming.
Enums In C#
Nov 09, 2017.
Suppose we are creating a program in which we have to use multiple named constants of similar type and on the basis of a particular constant we have to perform some operation. So what we normally do is initialize each named constant with a value. This may require a lot of effort if the number of constants is large. Also the look and feel of the code is not up to the mark. Have a look at the below program to understand more. The program contains months of the year. We have to put lots of effort to assign each month to a value.
Real-Time CRUD Operations In GridView Using WCF In ASP.NET
Jun 19, 2017.
Performing CRUD Operations in GridView in real-time scenarios using WCF in ASP.NET.
WCF Using Stored Procedure In ASP.NET To Insert Records
May 16, 2017.
This article gives you a brief idea about WCF, using stored procedure in ASP.NET to Insert the records.
Create A WCF Service Client In Visual Studio
Apr 20, 2017.
This article will demonstrate how to create a client for consuming WCF web service by using Visual Studio 2015
Create WCF Web Service In Visual Studio 2015
Apr 18, 2017.
In this article, you will learn how to create your first REST based XML Web Service in Visual Studio 2015.
Accessing Microsoft Dynamics CRM Web APIs Using Self-Hosted WCF Services
Feb 08, 2017.
This article will walk you through the below sample code to access CRM Web APIs via self-hosted WCF services.
WCF Basics
Feb 05, 2017.
This article is about how to create and consume WCF Service
Introduction To ASP.NET REST Web API And Drawbacks Of Web Services And WCF - Part One
Feb 01, 2017.
In this article, you will learn about ASP.NET REST Web API and drawbacks of Web Services and WCF.
Duplex Service Using WCF
Jan 22, 2017.
In this article, you will learn about Duplex Service, using WCF.
netTcpBinding In WCF Service With IIS Hosting
Jan 12, 2017.
In this article, you will learn about netTcpBinding in WCF Service with IIS hosting.
Instance Mode In WCF
Dec 22, 2016.
In this article, you will learn about Instance Mode in WCF.
WCF Service With JWT Token
Dec 22, 2016.
In this article, you will learn about WCF Service with JWT Token.
How To Use A WCF Service Without Adding Service Reference
Dec 22, 2016.
In this article, you will learn how to use a WCF Service without adding service reference.
Hosting WCF Service On IIS
Dec 20, 2016.
In this article, you will learn how to host WCF Service on IIS.
Create Simple WCF Service And Host It On Console Application
Dec 17, 2016.
In this article, you will learn how to create a simple WCF service and host it on console application.
Consume WCF Services In Xamarin Android App
Dec 03, 2016.
In this article, you will learn how to consume WCF Services in Xamarin Android app.
WCF Service Unit Tests Using NUnit With Rhino Mocks And Entity Framework
Nov 22, 2016.
In this article, you will learn how to run WCF Service Unit Tests using NUnit, with Rhino Mocks and Entity Framework.
Extensibility - Inspecting WCF Messages
Nov 18, 2016.
In this article, you will learn extensibility - inspecting WCF messages.
Introduction To WCF
Nov 14, 2016.
In this article. you will learn about WCF.
Server Load Balancing In WCF
Nov 10, 2016.
In this article, you will learn about server load balancing in WCF.
Monitor Inside Your Running Services Using SignalR And WCF
Nov 08, 2016.
Gain insight into the normal 'Blackbox' of Windows services and more...
WCF Service Failover
Oct 21, 2016.
In this article, you will learn about WCF Service Failover.
Protocol Bridging In WCF
Oct 13, 2016.
In this article, you will learn about protocol bridging in WCF.
WCF - Service Configuration Editor
Oct 11, 2016.
This article talks about the utility called "Service Configuration Editor"which is very useful to set the configuration for a WCF Service.
Configuring WCF Routing
Oct 08, 2016.
In this article you will learn the configuration of WCF Routing.
Basics Of WCF Routing
Sep 24, 2016.
In this article, you will learn about the basics of WCF Routing.
Message Logging In WCF
Sep 21, 2016.
In this article, you will learn about Message Logging in WCF.
IIS Hosting In WCF
Sep 15, 2016.
In this article, you will learn about IIS Hosting in WCF.
WAS Hosting In WCF
Sep 14, 2016.
In this article, you will learn about WAS Hosting in WCF.
Quick Reference To TypeScript
Sep 07, 2016.
In this article, you will learn about TypeScript.
Multipart Form Data In WCF
Aug 25, 2016.
This tutorial guides the creation of a WCF Service Library in Visual C#. It involves setting up a project named "DemoMultipartWCF" and implementing functionality to handle multipart form data, parse parameters, and manage file uploads. It includes methods for parsing streams, saving image files, and retrieving image codecs.
Create And Read Operations Using ASP.NET WCF Services
Aug 22, 2016.
In this article, we will create a WCF Service, which will insert the data into the database and retrieve the data from the database. Further, we will consume this Service in ASP.NET Web Application and also learn the techniques to generate logs from the client Application.
Increase Message Size Quota In WCF And Web Service
Aug 08, 2016.
In this article, we can learn how to increase the message size.
Throttling In WCF: Concurrent Instance and Session - Part Two
Jul 20, 2016.
In this article, you will learn about concurrent instance and session, using throttling in WCF.
Consuming WCF Service In MVC Application Using Entity Framework
Jul 18, 2016.
In this article, you will learn about consuming WCF service in MVC application, using entity framework.
Node.js For .Net Developers By WCF
Jul 15, 2016.
In this article, we will discuss about Node.js for .Net developers by WCF.
A Quick Rundown Of Web Services In ASP.NET: Web API And WCF
Jul 13, 2016.
In this article, you will learn about web services in ASP.NET.
Throttling In WCF: Concurrent Call - Part One
Jul 13, 2016.
In this article, you will learn about throttling In WCF.
Basics Of WCF Service With Hosting And Consuming Using ASP.NET
Jul 10, 2016.
In this article you will learn about the basics of WCF Service with hosting and consuming using ASP.NET.
Rest And RESTful WCF Service
Jul 05, 2016.
In this article, you will learn about REST and RESTful WCF Service.
Top 10 Most Popular Articles Of WCF
Jun 28, 2016.
We have compiled a list of top 10 most popular WCF articles.
Hosting In WCF
May 22, 2016.
In this article you will learn how to perform hosting in WCF .
Protection Level In WCF
May 16, 2016.
In this article you will learn about Protection Level in WCF.
Basic WCF Service Step by Step
May 08, 2016.
In this WCF tutorial, you will learn how to create a WCF Service and how to consume a WCF Service in an app using C# and Visual Studio.
Using WCF Services In ASP.NET MVC 5: Part Seventeen
May 01, 2016.
In this article you will learn how to use WCF Services in ASP.NET MVC 5.
Host WCF In Console Application
Apr 30, 2016.
In this article you will learn how to host WCF in Console Application.
Routing in WCF - Action Filters
Apr 30, 2016.
In this article you will learn about Routing in WCF - Action Filters.
WCF Router Service - EndPointName Filter
Apr 30, 2016.
In this article you will learn about EndPointName Filter in WCF Router Service.
Routing In WCF
Apr 29, 2016.
In this article you will learn about Routing in WCF.