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 namespace
A
Namespace
is used for to uniquely identify set of names of objects but these names have different-2 behaviors to reduced the ambiguity of codes or we can say more names from other similar names of different objects, groups or the
Namespace
in general. By
Namespace
possible to distinguish objects with similar names but different origins. In XML file number of
Namespaces
of objects are stored which are uniquely find by unique
Namespace
for unique attributes.
Namespace
is primarily used in programming languages where the same name may be used for different objects. It is created to group together those names that might be repeated elsewhere within the same or interlinked programs, objects and elements. Each of the names within that namespace is only related/linked to that
Namespace
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mahesh Chand (12)
Ibrahim Ersoy (5)
C# Curator (5)
Srinivasa Sivkumar (3)
Abhimanyu K Vatsa (3)
Richa Garg (3)
Sourabh Mishra (2)
Sourav Kayal (2)
Pankaj Lohani (2)
G Gnana Arun Ganesh (2)
Frank Gutierrez (2)
Abhishek Jaiswal (2)
Anubhav Chaudhary (2)
Mahak Gupta (2)
Praveen Sreeram (1)
Gul Md Ershad (1)
Shweta Lodha (1)
Vikas Garg (1)
Kailash Chandra Behera (1)
Ishika Tiwari (1)
Jayraj Chhaya (1)
Abhishek Kumar Ravi (1)
Ravi Satyadarshi (1)
Rohatash Kumar (1)
Karthikeyan (1)
Gurpreet Arora (1)
Amogh Natu (1)
Erika Ehrli Cabral (1)
Sardar Mudassar Ali Khan (1)
CSharp TV (1)
Lajapathy Arun (1)
Levent Yildiz (1)
Rajesh VS (1)
Gaurav Gahlot (1)
Vishal Gilbile (1)
Ramsis (1)
Neha Sharma (1)
Love Thakker (1)
Levent Camlibel (1)
Abhijit Patil (1)
Jin Necesario (1)
Jasminder Singh (1)
Rathrola Prem Kumar (1)
Dinesh Kushwaha (1)
Sriram Hariharan (1)
Sanjeev Kumar (1)
Prasham Sabadra (1)
Saillesh Pawar (1)
Anand Narayanaswamy (1)
Emiliano Musso (1)
Hussain Patel (1)
Anoop Kumar Sharma (1)
Vidya Vrat Agarwal (1)
Kaushik Srenevasan (1)
Debadatta Mishra (1)
Ajay (1)
Ashish Jaiman (1)
joyprakash.saikia (1)
raviraj_bh (1)
Malcolm Crowe (1)
Sapna Malik (1)
Nipun Tomar (1)
Doug Bell (1)
Vishal Nayan (1)
karen (1)
Vijai Anand Ramalingam (1)
Michael Bleistein (1)
Related resources for namespace
No resource found
Azure Storage Account Vs Azure Data Lake Service Gen 2
11/25/2024 8:15:25 AM.
Azure Data Lake Storage Gen2 (ADLS Gen2) is a highly scalable and analytics-optimized storage solution in Azure, offering hierarchical namespace, big data processing capabilities, and Secure File Tran
Collections in C#
10/1/2024 9:06:58 AM.
This article describes Collections in C#. A collection is a way to create and manage groups of related objects. The group of objects can grow and shrink dynamically depending on the requirements in th
Generating XML Root Node Having Colon-Via Serialization
6/24/2024 9:00:23 AM.
Generating XML dynamically with a defined schema involves handling namespaces and prefixes correctly. Using XmlElement and XmlAttribute classes helps serialize XML parts, but achieving a prefixed root
Get All Installed Printers in C#
5/16/2024 6:03:55 AM.
Learn how to retrieve a list of all installed printers using C#. Explore printer management in C# using the System. Printing namespace to enumerate and gather information about installed printers.
Dynamically Call a Function in C#
5/16/2024 5:52:41 AM.
In this article, we will learn how to dynamically call a function in C# using reflection and delegates. By leveraging reflection, you can discover and invoke methods at runtime based on their names an
.Net Architecture And .Net Framework Basics
5/5/2024 8:25:53 AM.
.NET architecture encompasses the Common Language Runtime (CLR) and Common Type System (CTS), executing Intermediate Language (IL) through Just-In-Time (JIT) compilation.
Getting Assembly Metadata at Runtime
4/23/2024 8:22:02 AM.
Retrieving assembly metadata at runtime in .NET involves using reflection, and accessing attributes like AssemblyVersion or custom ones. This dynamic analysis enables discovering types, members, and o
Namespace for Authentication Routes in MVC and Its Importance
3/19/2024 1:18:38 PM.
The System.Web.Mvc namespace in ASP.NET MVC is crucial for authentication routes, aiding in code organization, readability, and integration with framework features for seamless authentication and auth
Understanding Implicit Usings in C#
3/13/2024 4:29:15 AM.
In C# 10, a new feature called "Implicit Usings" has been introduced. This feature aims to simplify the process of including commonly used namespaces in C# code files.
Extension Methods In C#
10/23/2023 7:27:51 AM.
This article explains Extension methods. Extension methods are static methods, that are always implemented in a static class. In C# we already have some built-in extension methods like Union, Where an
Get IP Address Using C#
10/20/2023 8:23:38 AM.
In this article, we find the IP Address of the local device.
Dictionary Overview In C#
9/22/2023 8:33:21 AM.
This article is an overview of Dictionary in C#. Dictionary is a generic class that belongs to the System.Collection namespace in . NET. A dictionary can store Keys and Values of any data type in .NET
Introductions To C#
9/21/2023 7:00:18 AM.
C# is a new programming language developed by Microsoft. C# has power of C++ since it's derived from C and C++. It is simpler as VB.
DateTime In C#
9/12/2023 10:54:06 AM.
In C#, DateTime is a fundamental data type that represents dates and times. It is part of the System namespace and provides a rich set of methods and properties for working with dates and times. Here
Introduction to System.Management Namespace
9/1/2023 4:53:08 AM.
The article provides an insight on the use of System.Management namespace and the advantages of WMI.
File-Scoped Namespace Declaration in C#
7/28/2023 5:04:58 AM.
File-Scoped Namespace Declaration in C# 10
Restricting a C# Application to a Single Instance
7/17/2023 10:15:21 AM.
This post will show how you can implement that in your windows application using C#.
OOPS Concepts And .NET - Part One - Classes, Objects, And Structures
6/6/2023 6:50:13 AM.
The following article kicks off a three-part article series that will present definitions and samples for different Object-Oriented Programming concepts and its implementation in .NET.
HttpContextAccessor in Asp.NET Core Web API
5/27/2023 3:58:23 PM.
In ASP.NET Core Web API, the HttpContextAccessor class is a component that provides access to the current HTTP request and response context. It allows you to access various aspects of the HTTP request
Namespaces and Health Checks - Kubernetes Fundamentals Ep. 7
2/7/2023 3:00:57 PM.
In this episode, you will learn about Namespaces and Health Checks in Kubernetes.
Dynamically Getting Database Collection From SQL Server Using C#
1/24/2023 5:39:19 AM.
In this article we are going to see how to get a database List dynamically using C#.
Sending Email with C# using SMTP Servers
11/30/2022 9:30:37 AM.
This article will explain how we can send emails using SMTP servers.
Important Interface in .NET: Work With IEnumerable Interface
11/17/2022 9:41:30 AM.
The purpose of the article is to explain the most important interface, IEnumerable, of the .NET class library and implement it in a pratical example.
Working with Namespaces in C#
8/24/2022 6:37:05 AM.
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.
Tutorial: Creating C# Class Library (DLL) Using Visual Studio .NET
2/24/2022 10:09:25 AM.
This step-by-step tutorial shows you how to create a class library (DLL) in Visual Studio .NET.
Docker & Containers - Kernel Internals (namespaces, cgroups, ufs, capabilities)
9/4/2021 5:35:10 AM.
URL Routing in MVC4
5/5/2021 9:22:12 AM.
We’ll try to demonstrate how the routing works in a MVC4 application. For this we’ll take an example.
Create an Application Using Any Database Without Changing a Single Line of Code
3/24/2021 12:22:32 PM.
This article shows how to create an application that uses any database, including Access or SQL Server.
MatchEvaluator Delegate of a Regular Expression Replace Method in ASP.Net
3/17/2021 10:38:13 AM.
This article explains the MatchEvaluator Delegate of a custom verification for each match found by a Regular Expression Replace method.
Send Emails With Attachment in ASP.NET
2/3/2021 9:58:09 AM.
In this article, you will see how to send an email with an attachment using C# in ASP.NET.
Sending an E-Mail With Attachment Using ASP.Net MVC
1/28/2021 11:42:29 AM.
Sending email is a very common task in any web application for many purposes. In daily development we need to add some mail functionality to our project to send email to the customer or another in our
Error Occurred In Deployment Step 'Recycle IIS Application Pool' - Invalid Namespace SharePoint
1/18/2021 2:03:47 PM.
In this article, you will learn about Error occurred in deployment step 'Recycle IIS Application Pool': Invalid namespace SharePoint.
ADO.NET: What's changed in .NET Beta 2?
11/2/2020 9:11:16 AM.
ADO.NET API is one of the changed APIs. In this article, I've covered some of ADO.NET changes in Beta 2.
Compute Feature of DataTable
11/1/2020 11:45:56 PM.
The following code is for implementing least known feature of DataTable Compute() method.
ADO .NET Class Hierarchy
10/30/2020 2:27:31 AM.
In this article I will explain about the ADO.NET class hierarchy provided by the .NET Runtime class library. These classes represent ADO.NET components.
Creating Your First ADO.NET Web Application
10/30/2020 2:12:41 AM.
In this article I will explain Creating Your First ADO.NET Web Application.
Introduction To ADO.NET
10/29/2020 7:43:00 AM.
In this article I explain the basic details of ADO.NET.
ADO .NET Disconnected Classes
10/29/2020 2:51:47 AM.
In this article I will explain about the ADO.NET Disconnected Classes.
Write Relational Data to an XML File
10/29/2020 2:38:19 AM.
This article shows you how you can write data from a database to an XML file using DataSet.
Namespace in JavaScript
4/20/2020 3:13:44 AM.
In this article we will learn the concept of namespace in JavaScript. If you are C# developer then you might know the concept of namespace very well. If not then the small introduction is for you.
Playing With File I/O Using C#
8/28/2019 11:51:30 PM.
In this article, you will learn about the basics of File I/O using C#. We are going to discuss the 3 classes - Path, Directory & File - to work with the file-system.
String Encoding/Decoding and Conversions in C#
6/2/2019 6:29:24 AM.
In this article, I will explain C# String Encoding/Decoding and Conversions in C#.
Namespaces In C#
5/28/2019 6:47:09 PM.
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.
Accessing Global Address List via System.DirectoryServices Namespace
3/7/2019 12:02:27 AM.
This is a how-to article to access the GAL from ASP.NET, using the DropDownList ASP.NET server control as the UI. To accomplish this the article will illustrate by utilizing ADSI technology from a C#
Static Namespace In C# 6.0
2/25/2019 11:31:27 AM.
This article explains the new feature in C# 6.0 called Use of static as namespace in C# 6.0.
How To Organize Classes Using Namespaces
9/20/2018 2:28:37 AM.
How To Organize Classes Using Namespaces. In this article we will learn Two-Tiered Namespaces and Commonly used namespaces in .NET Framework.
Create CLR Stored Procedure With And Without Namespace In C# And Install And Uninstall CLR Assembly In MSSQL Server
5/13/2018 5:17:50 AM.
In this article, we will learn how to create a CLR Stored Procedure with & without namespace in C# and install & uninstall CLR assembly in MSSQL Server.
Azure Service Bus - Peek-Lock A Message From Queue Using Azure Logic Apps
10/26/2017 3:05:02 PM.
In this article, we will take a look at how you can peek-lock on a message from a Service Bus Queue without actually reading the message from the queue.
What is VB.NET Namespace
6/26/2017 2:24:26 AM.
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 co
Revisiting Concepts Of JavaScript For SharePoint / Office 365 Developer - JavaScript Namespaces - Part Two
5/31/2017 2:14:54 PM.
Revisiting concepts of JavaScript for SharePoint/ Office 365 developer - JavaScript Namespaces.
Learn Tiny Bit Of C# In 7 Days - Day 2
5/12/2016 11:57:00 AM.
This article intended to focus towards the beginners so that they can easily grasp the C# Language concepts.
OOP In WinJS #2: Nested Namespaces
3/23/2016 9:26:54 AM.
In this article, I'll be talking about how to use Nested Namespaces in WinJS library. We'll be using Universal Windows Apps for showing the demo.
OOP in WinJS #1: Namespaces
3/22/2016 10:09:49 AM.
In this article, I'll be talking about how to use namespaces in WinJS library. We'll be using Universal Windows Apps for showing the demo.
C# FAQ 3 - Getting Started With C#
10/31/2015 1:48:57 AM.
This article examines the basics concepts associated with C# programming such as CLR, Class libraries and namespaces.
Namespace Aliases In Visual Basic .NET
10/13/2015 12:23:11 PM.
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.
Understanding Namespaces in C#
6/17/2015 10:51:43 AM.
In this article you will learn about Namespace in C# language.
Text to Speech Converter in C#
12/16/2014 11:13:20 PM.
In this article, we will learn how to create a Text to Speech Converter in a C# Windows Forms application using the SpeechSynthesizer class.
Alias Statement and Command Line Argument in C#
3/31/2014 2:28:38 PM.
This article explains the alias statement and command line arguments in C#.
ALIAS And Command Line Argument in C#
2/26/2014 11:23:12 AM.
This article will familiarize you with alias concepts and command line arguments in C#.
File I/O Using C#
1/11/2014 1:56:01 PM.
In this article, you will learn how to work with classes in the System.IO namespace for reading data from and writing data to files.
An Introduction to C#
12/19/2013 11:41:54 AM.
This tutorial explains the basics of C#, a modern Object Oriented Programming language that was designed by Anders Hejlsberg at Microsoft.
Connectivity With Database In Windows Forms Application Using F#
9/13/2013 8:17:51 PM.
This article explains how to work with Windows Forms applications in F#, how to connect with a SQL Server database from the Windows Forms application and how to add user controls in the Windows Forms application.
Usage of Class and Enum Inside an Interface
8/17/2013 11:35:06 AM.
This small article provides an outline of the usage of classes and enums inside an interface that seem to be unusual to a developer.
How to Create a New Shared Folder in Namespace of DFS
5/24/2013 5:31:49 PM.
In this article you will learn how to create a new Shared Folder in a namespace of DFS.
How to Add a New Namespace to the DFS
5/23/2013 2:30:04 PM.
In this article you will learn how to add a new namespace to the DFS.
Creating and Using Namespaces in VB.NET
12/1/2012 4:29:24 AM.
We all know namespaces are the basic building block for the .NET framework. In this article, I’m going to show how to create and use namespaces with VB.NET and C#.
Understanding and using Namespaces in VB.NET
11/10/2012 3:48:38 AM.
In this article, you will learn about namespaces in VB.NET. Here you will learn how to create and use namespaces.
Create and Use Namespaces in VB.NET
11/10/2012 3:40:35 AM.
We all know namespaces are the basic building block for the .NET framework. In this article, I'm going to show how to create and use namespaces with VB.NET and C#.
ASP.Net Namespaces in VB.Net
11/10/2012 2:19:33 AM.
In this article we will discuss on Namespace with respect to ASP.Net web pages.
C# or VB.NET: World War III
11/9/2012 9:47:47 AM.
I know many .NET developers have this question in their mind. Which language do I use to develop .NET applications?
GDI+ Namespaces and Classes in VB.NET
11/8/2012 8:29:09 AM.
In this article I will explain about GDI+ Namespaces and Classes in .NET.
Understanding ODBC .NET Data Provider
10/20/2012 2:28:20 AM.
The ODBC .NET data provider provides access to ODBC data sources with the help of native ODBC drivers in the same way that the OleDb .Net data provider accesses native OLE DB providers.
Understanding Crystal Report Viewers
10/20/2012 1:44:53 AM.
Crystal Report Viewers work as a container of a report and allow us to view a crystal report in Windows and Web applications. Crystal Reports for Visual Studio .NET provides two report viewers – Windows Forms Viewer and Web Forms Viewer.
Tutorial: Working with Files and Directories
10/13/2012 3:36:54 AM.
One of the rich experiences in working with .NET is a huge collection of Base Class Libraries .
Accessing Global Address List via System.DirectoryServices namespace
10/13/2012 3:02:19 AM.
This is a how-to article to access the GAL from ASP.NET, using the DropDownList ASP.NET server control as the UI. To accomplish this the article will illustrate by utilizing ADSI technology from a C# assembly returning an ArralList in order to bind to the DropDownList.
Go Beyond the Limits of ASP.NET Form
10/3/2012 12:17:53 PM.
One of the most common hitches that ASP developers encounter when they first approach ASP.NET is that managed Web applications must be written according to a single-form interface model.
Extending Your Working Environment in Visual Studio - Advanced
9/30/2012 4:47:57 AM.
In my previous article, you learned about how to create wizards and some simple objects such as DTE, Solutions, Project and Project Item. These objects help us to customize our Visual Studio working environment.
System.Security.Cryptography.Xml Namespace
9/30/2012 2:47:56 AM.
In this article I will explain you about the System.Security.Cryptography.Xml Namespace.
An SNMP Library for .NET Framework
9/30/2012 2:39:23 AM.
Snmp.dll is a C# class library for the .NET framework. It has been developed on the Windows platform and may be useful on others also.
Email Sending in ASP.net 2.0
9/30/2012 2:31:08 AM.
This article will focus on following concept Simplest way of sending email Writing HTML Email Creating Email with attachment.
Namespaces in XAML
9/29/2012 8:49:42 AM.
In this article, you will learn about namespaces used in XAML or XML.
ADO.NET Application using MS Access 2007 database
9/29/2012 7:49:29 AM.
In this article I will explain you how to use ADO.NET technology to connect .NET console application and MS Access 2007 database.
WPF: An Introduction (Part 2)
9/29/2012 6:33:14 AM.
This is the second part of an introduction to WPF; here we are going to learn WPF in detail.
System.Security.Cryptography Namespace in .NET
9/29/2012 5:55:42 AM.
In this article I will explain you about System.Security.Cryptography Namespace in .NET.
Formatting In Percentages Using Windows Store Apps
9/27/2012 2:37:02 PM.
In this article I will explain how to perform percent formatting using the PercentFormatter class in Windows Store apps.
ASP .NET Server-Side controls
9/27/2012 8:08:57 AM.
In this article I will explain about ASP .NET Server-Side controls
Formatting In Decimal Number Using Windows Store Apps
9/26/2012 1:30:28 PM.
In this article I will explain how to perform decimal number formatting in Windows Store apps.
Message Dialog in Windows Store Apps
9/20/2012 1:29:54 PM.
In this article I will explain how to create a Message Dialog in Windows Store apps.
OperationContractAttribute In WCF
8/20/2012 2:19:55 PM.
In this article, we will be discussing the OperationContractAttribute, which is the part of the Service Contract.
Simple NSLookUp Implementation in C#
5/29/2012 11:31:04 PM.
This is code implementation for simple nslookup. As you can see from the code listing, I've used classes defined in the System.Net namespace.
Working With Drives and Directories in ASP.NET
5/24/2012 9:53:42 PM.
In this article we will discuss how to interact with the File System, Drives and Directories and how we get the path details.
Task System in Windows Phone 7
5/20/2012 7:39:33 AM.
In this article I will be talking about Task System in Microsoft.Phone.Tasks namespace and how to build applications for Windows Phone 7.
Microsoft .NET and XML
5/20/2012 6:32:07 AM.
In this article I will explain you about Microsoft .NET and XML.
XML Namespaces
5/20/2012 6:29:23 AM.
In this article I will explain you about XML namespace, DTD and schemas and Extensible Hyper Text Markup Language.
ADO .NET and XML
5/20/2012 6:24:12 AM.
In this article I will explain you about ADO .NET and XML.
Namespaces in C#
8/11/2011 1:06:32 AM.
In this article you will learn how to write custom namespaces and nested namespaces in C#.
Understanding XAML Namespace in Silverlight
1/21/2011 4:12:35 PM.
Extensible Application Markup Language (XAML) is a markup language used to instantiate .NET objects. Although XAML is a technology that can be applied to many different problem domains, it was initially designed as a part of Windows Presentation Foundation (WPF).
System.Drawing.Drawing2D Namespace in C#
12/14/2010 12:01:39 AM.
The System.Drawing.Drawing2D namespace provides advanced two-dimensional and vector graphics functionality. The following table lists some of the important classes in theSystem.Drawing.Drawing2D namespace, and their descriptions.
How to resolve "The type or namespace name 'SharePoint' does not exist in the namespace 'Microsoft'
11/22/2010 1:29:34 AM.
In this article we are going to see how to resolve "The type or namespace name 'SharePoint' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?) "For console application in Visual Studio 2010.
Declaring Namespaces with Micro Focus for COBOL.NET
9/24/2010 10:25:39 AM.
In this article we will see how to use the ILUSING directive to declare namespaces in your COBOL.NET programs using Micro Focus.
- Ebook
Source Code: Graphics Programming with GDI+
Graphics Programming with GDI+ is the .NET developer's guide to writing graphics appl...
Download