SlideShare a Scribd company logo
2
Most read
3
Most read
CLS in .NET
Learn CLS(Common Language
Specification) with an example.
CLS stands for Common Language
Specification.
It is set of rules that every language must
follow which runs under .NET framework.
When it follows the rules it will ensure
that code can be consume in any .Net
compiled language
For example:-
we cannot have members with
same name with case difference
i.e. add() and Add() methods. It can
work easily in C# as it is case-
sensitive but it is not possible in
VB.NET because it not cas-
sensitive.

More Related Content

ODP
Introduction of Html/css/js
PDF
Introduction to Web Services
PPTX
Program Threats
PPTX
Library management system
 
PPT
USER INTERFACE DESIGN PPT
PPTX
HTML-(workshop)7557.pptx
PPTX
Library management system
Introduction of Html/css/js
Introduction to Web Services
Program Threats
Library management system
 
USER INTERFACE DESIGN PPT
HTML-(workshop)7557.pptx
Library management system

What's hot (20)

PPTX
Designing applications with web access capabilities
PDF
JavaScript - Chapter 12 - Document Object Model
PPTX
Page replacement algorithms
PPTX
Introduction to php
PDF
jQuery for beginners
PPT
Webservices
PPT
PPT
Library management system presentation
PPTX
Web Development
PPTX
Common language runtime clr
PDF
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
PPTX
PPTX
Images and Tables in HTML
PPTX
Html forms
PPTX
Web application
PPTX
directory structure and file system mounting
DOCX
Software requirements specification of Library Management System
PPTX
Xml presentation
PPT
Open Source Technology
PDF
Class and Objects in Java
Designing applications with web access capabilities
JavaScript - Chapter 12 - Document Object Model
Page replacement algorithms
Introduction to php
jQuery for beginners
Webservices
Library management system presentation
Web Development
Common language runtime clr
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
Images and Tables in HTML
Html forms
Web application
directory structure and file system mounting
Software requirements specification of Library Management System
Xml presentation
Open Source Technology
Class and Objects in Java
Ad

More from Questpond (8)

PPTX
Most asked JAVA Interview Questions & Answers.
PPTX
30 C# Interview Questions and Answers
PPTX
OOP interview questions & answers.
PPTX
Explain Delegates step by step.
PPTX
AOT(Ahead Of Time)
PPTX
Explain CTS in detail.
PPTX
Learn .NET step by step :- What is IL code in .NET?
PPTX
What is Higher Language and Lower Language in programming.
Most asked JAVA Interview Questions & Answers.
30 C# Interview Questions and Answers
OOP interview questions & answers.
Explain Delegates step by step.
AOT(Ahead Of Time)
Explain CTS in detail.
Learn .NET step by step :- What is IL code in .NET?
What is Higher Language and Lower Language in programming.
Ad

Recently uploaded (20)

PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Complications of Minimal Access Surgery at WLH
PDF
TR - Agricultural Crops Production NC III.pdf
PPTX
Cell Structure & Organelles in detailed.
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
Pre independence Education in Inndia.pdf
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PPTX
master seminar digital applications in india
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
Classroom Observation Tools for Teachers
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
Business Ethics Teaching Materials for college
PPTX
Cell Types and Its function , kingdom of life
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
Microbial diseases, their pathogenesis and prophylaxis
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
STATICS OF THE RIGID BODIES Hibbelers.pdf
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Complications of Minimal Access Surgery at WLH
TR - Agricultural Crops Production NC III.pdf
Cell Structure & Organelles in detailed.
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Pre independence Education in Inndia.pdf
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
master seminar digital applications in india
O5-L3 Freight Transport Ops (International) V1.pdf
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Classroom Observation Tools for Teachers
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Renaissance Architecture: A Journey from Faith to Humanism
Module 4: Burden of Disease Tutorial Slides S2 2025
Business Ethics Teaching Materials for college
Cell Types and Its function , kingdom of life

What is CLS in .NET programming.

  • 1. CLS in .NET Learn CLS(Common Language Specification) with an example.
  • 2. CLS stands for Common Language Specification. It is set of rules that every language must follow which runs under .NET framework. When it follows the rules it will ensure that code can be consume in any .Net compiled language
  • 3. For example:- we cannot have members with same name with case difference i.e. add() and Add() methods. It can work easily in C# as it is case- sensitive but it is not possible in VB.NET because it not cas- sensitive.