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]
Niharika Gupta(2)
Abhishek Jaiswal (2)
Rikam Palkar(1)
Malinda Prasad(1)
Sangeetha S(1)
Sanwar Ranwa(1)
Mahesh Chand(1)
Nitin (1)
Rahul Rai(1)
Saillesh Pawar(1)
Emiliano Musso(1)
Shivom Agarwal(1)
Anubhav Chaudhary(1)
Shyju (1)
Sanjeev Kumar(1)
Arjun Panwar(1)
Dave (1)
Sairam (1)
Hamid (1)
Anand Kumar Rao(1)
kas_atd1 (1)
John Godel(1)
Rajesh VS(1)
G Gnana Arun Ganesh(1)
Resources
No resource found
TypeScript Interfaces vs Type Aliases: Complete Comparison
Jun 03, 2026.
Learn the differences between TypeScript Interfaces and Type Aliases. Compare features, use cases, examples, and best practices for modern TypeScript projects.
What Is TypeScript Interface vs Type Alias and When to Use Which?
Apr 03, 2026.
Unlock the power of TypeScript! Learn the difference between Interface and Type Alias with clear examples. Choose the right tool for object shapes, unions, and more!
GraphQL with .NET & React | Part 2: Query (Arguments, Aliases & Fragments)
Feb 19, 2026.
Master GraphQL queries in .NET & React! Learn arguments, aliases, fragments, directives, and HotChocolate filtering for efficient data fetching. Build dynamic UIs!
Sending Emails from Alias Addresses in Exchange Online
Oct 03, 2025.
This allows users to send emails directly from their alias addresses (e.g.,
[email protected]
) without needing shared mailboxes. Simplify communication, manage team identities, and consolidate multiple addresses under a single mailbox. We'll guide you through enabling the feature via PowerShell and configuring it in Outlook Web App, Outlook Desktop, and mobile apps.
Python Import Modules with Example
Jan 08, 2025.
Learn Python's import module concepts, including importing entire modules, specific functions, and aliasing. This article demonstrates creating, reading, and writing employee data to a JSON file with practical examples.
How Do You Define Custom Key Modifier Aliases in Vue.js
Feb 26, 2024.
In Vue.js, enhance keyboard event handling by defining custom key modifier aliases through Vue.config.keyCodes. This guide details the process, demonstrating how to create and utilize these aliases in Vue templates.
Alias any type in C# 12
Dec 19, 2023.
Learn about Alias any type in C# 12.
New Features In C# 12
Apr 22, 2023.
We're excited to show you three new features for C# 12:
Save Your Precious Dev Time With Command Aliases In Windows Terminal
Sep 18, 2019.
In this article, you will learn how to save your precious dev time with command aliases in a Windows Terminal.
Learn Tiny Bit Of C# In 7 Days - Day 2
Dec 10, 2015.
This article intended to focus towards the beginners so that they can easily grasp the C# Language concepts.
Namespace Aliases In Visual Basic .NET
Oct 13, 2015.
In Visual Basic .NET, it is possible to declare aliases for namespaces, giving the possibility of using more concise declarations, if the developer desires to do so.
Changing SQL Server Instance Name Using a SQL Server Alias
Jul 11, 2014.
In this article I will explain how to change an instance name using a SQL Server alias.
Alias Statement and Command Line Argument in C#
Mar 31, 2014.
This article explains the alias statement and command line arguments in C#.
ALIAS And Command Line Argument in C#
Feb 26, 2014.
This article will familiarize you with alias concepts and command line arguments in C#.
How to Add an Alias (CNAME) Resource Record to a Zone
Jun 09, 2013.
In this article you will learn how to add an Alias (CNAME) Resource Record to a Zone.
Disable Strict Name Check in Windows Server 2012
Feb 06, 2013.
Microsoft has introduced a security feature that refuses to serve a request if the target server name is not the server's actual name.
What is VB.NET Namespace
Sep 14, 2012.
This article describe namespaces in VB.Net. Group of code having a specific name is a Namespace. In a Namespace the groups of components are somehow related to each other. Namespaces are similar in concept to a folder in a computer file system.
Having and Alias Clause in MySQL
Dec 14, 2011.
In MySQL, the HAVING and AS (Alias) clauses are powerful features used in conjunction with the SELECT statement to filter and rename data retrieved from a table. Let's look at each clause individually.
The Basics of .NET Framework Interoperability
Feb 29, 2008.
The System.Runtime.InteropServices namespace defines classes where some of which define methods that enable managed code to call native code. This is accomplished via an internal call and is called the Platform Invoke service
Enhancements in Assemblies and Versioning in Visual Studio
May 01, 2006.
The article discusses a couple of features introduced for assembly and versioning in Visual Studio 2005 such as referencing assemblies, registering assemblies to GAC, digital signing and friend assemblies.
Antialiased Analog Clock
Apr 04, 2006.
This is an antialiased analog clock sample written in C# using GDI+. It has no flicker at run time because of using Double Buffering technique, and it has many properties that you can customize it such as tick and hand colors, gradient background color, custom date and hand styles.
Language Extensions In C# 2.0
Apr 21, 2005.
This article intends to the C# 1.x developers and covers what-why-how the new enhancement .The philosophy behind the document is to have quick update on C# 2.0 and leverage this in your day to day development work.
Coloring the Console in C#
Oct 25, 2004.
When working with console applications in C#, you always see a black and white screen. What if we want to change the background color of the console? We can change the foreground and background color of our console application by using win32 API SetConsoleTextAttribute().
XP, Component Services and .NET
Dec 13, 2001.
First of all, COM+ does revolutionize COM; it is not only a superior new version of the COM programming model it is also a new platform to design and develop components. In addition, COM+ Services in XP does have some differences from Windows 2000; also XP and COM+ 1.5 offer a richer set of services than was available in COM+ 1.0. This article will describe the basic component services on the XP.
Working with Namespaces in C#
Nov 07, 2001.
In C#, namespaces are used to logically arrange classes, structs, interfaces, enums and delegates. The namespaces in C# can be nested. That means one namespace can contain other namespaces also.
Namespaces In C#
Aug 20, 2001.
C# namespaces organizes types in a group. In C#, every class belongs to a namespace and the namespace needs to be referenced or imported to use the class.