2. Main features of the C# language
2.1 C# namespace
The namespace concept was borrowed from C++. It makes it easier to check that all the names used in a particular program are unique. It is therefore possible to have the same name in two different namespaces. For example, the "Person" class in the following example :
namespace ArbreGenealogique {
class Personne { .... }
}
namespace Bank {
class Personne { .... }
}
If you wish to use the "Person" class, simply specify which one: "ArbreGenealogique.Personne" or "Banque.Personne". Another solution...
Exclusive to subscribers. 97% yet to be discovered!
You do not have access to this resource.
Click here to request your free trial access!
Already subscribed? Log in!
The Ultimate Scientific and Technical Reference
This article is included in
Software technologies and System architectures
This offer includes:
Knowledge Base
Updated and enriched with articles validated by our scientific committees
Services
A set of exclusive tools to complement the resources
Practical Path
Operational and didactic, to guarantee the acquisition of transversal skills
Doc & Quiz
Interactive articles with quizzes, for constructive reading
Main features of the C# language
Bibliography
Standards
Standards.Net
ISO/IEC 23270:2006 Information technology. C# programming languages.
ISO/IEC 23271:2006 Information technology. Common Language Infrastructure (CLI). Partitions I to VI.
W3C standards :
http://www.w3c.org (web service, WSDL, SOAP, XML, HTTP)
SOAP:
Websites
From the publisher (Microscoft)
http://msdn.microsoft.com/net/
ASP.NET : http://www.asp.net/
Exclusive to subscribers. 97% yet to be discovered!
You do not have access to this resource.
Click here to request your free trial access!
Already subscribed? Log in!
The Ultimate Scientific and Technical Reference