SlideShare uma empresa Scribd logo
1 de 5
Baixar para ler offline
Articles from Jinal Desai .NET
OOPS With CSharp
2012-11-10 13:11:59 Jinal Desai

Some scenarios I came across while working with C# where OOPs funda deviated
at some level to provide more flexibility. Suggest me some more scenarios if I miss
anyone.

Scenario # 1.
Two interface having same method signature is derived by a class.

How to implement methods in a class with same signature from different
interfaces?
We can use named identifiers to identify the common method we implemented
based on two different interfaces.

i.e. If there is two interfaces i1 and i2, both has one method with same signature
(void test(int a)), then at the time of implementing these methods inside class “abc”
we can use i1.test and i2.test to differentiate the implementation of methods from
two different interfaces having same signature.

Interface i1
{
  void test(int a);
}

interface i2
{
  void test(int a);
}

public class abc: i1, i2
{
  void i1.test(int a)
  {
    Console.WriteLine(“i1 implementation: “ + a);
  }

    void i2.test(int a)
    {
      Console.WriteLine(“i2 implementation: “ + a);
    }
}

Note : The only thing that can be noted here is that at the time of implementing test()
methods from two different interfaces in a single class, the public modifier is not
required. If you define public modifier for the implementation of test() method in
class “abc” then it will give you error “The modifier ‘public’ is not valid for this item”.

How to call those implemented methods from another class?
To access methods implemented in a class “abc” into another class, we need to
use respected interface rather than class “abc”.

i.e. If I need to use method of interface i1 then I need to do code as follow.

i1 testi1=new abc();
i1.test(10);

Above code will call test() method of interface i1. In the similar manner we can call
test() method of interface i2. If we need to call both the method with one instance of
class “abc” then we need to cast “abc” class into an interface of which method we
are intended to call as demonstrated below.

abc testabc=new abc();
(testabc as i1).test(10);
(testabc as i2).test(10);

What if I has a method inside class “abc” with same signature prototyped in
interface i1 and i2 (those interfaces we have implemented in class “abc”)?
In that case we can call the method in a normal way with the instance of class
“abc”.
i.e.

public class abc: i1, i2
{
  void i1.test(int a)
  {
    Console.WriteLine(“i1 implementation: “ + a);
  }

 void i2.test(int a)
 {
   Console.WriteLine(“i2 implementation: “ + a);
 }

 void test(int a)
 {
   Console.WriteLine(“Normal method inside the class: ” + a);
 }
}
//To call the method normally.
abc testabc=new abc();
testabc.test(10);

How we can access implemented method of i1 from inside the implemented
method of i1, in a class “abc” or vice-versa?
It’s simple. We need to cast “this” into respected interface to use it’s method.
i.e.
public class abc: i1, i2
{
  void i1.test(int a)
  {
    Console.WriteLine(“i1 implementation: “ + a);
  }

    void i2.test(int a)
    {
      Console.WriteLine(“i2 implementation: “ + a);
      (this as i1).test(a + 20);
    }
}

Scenario #2
Which are the things allowed inside an interface in case of C#? (In other way
can automated property/event/delegate…etc allowed inside an interface
while using C#.NET?)

First thing first is method signature can be declared in an interface, it is the purpose
of an interface. Except method signature, property declaration and event declaration
are also allowed inside an interface.

Property Declaration inside an Interface

interface Itest
{
  int a { get; set; }
  int b { get; set; }
}

The only thing you need to care here is that, you need to implement these properties
in an implemented class. Compiler will not understand these declared properties as
automated properties. In a class if we write properties like this then it should be
considered as an automated properties, implementation is not required in that case.
i.e. Implementation of properties defined in Itest
class Test:ITest
{
  int aVar = 0;
  int bVar = 0;
  public int a
  {
    get
    {
return aVar;
     }
     set
     {
       aVar = value;
     }
    }
    public int b
    {
      get
      {
        return bVar;
      }
      set
      {
        bVar = value;
      }
    }
}

Event Declaration inside an Interface

public delegate void ChangedEventHandler
(object sender, EventArgs e);
interface Itest
{
  event ChangedEventHandler Changed;
}

Now to use this event inside the implemented class, following is an example.

Class Test: Itest
{
  public void BindEvent()
  {
    if(ChangedEventHandler!=null)
     Changed+=new ChangedEventHandler(Test_Changed);
  }
  void Test_Changed(object sender, EventArgs e)
  {
    //Event Fired
  }
}

This way you can confirm that all the implementer classes implemented the event to
become sync with the interface design. So that all the classes can be called in a
similar pattern designed by an interface.

Scenario #3
I have one interface Itest as defined below.

Interface Itest
{
  int sum(int a, int b);
}

I have implemented the interface into Calculator class as follow.

Class Calculator:ITest
{
  public int sum(int a, int b)
  {
    return (a+b);
  }
}

I have one more class named ScientificCalculator derived from Calculator class
having same method with same signature.

Class ScientificCalculator:Calculator
{
  public int sum(int a, int b)
  {
    return base.sum(a,b);
  }
}

Can it be possible to access sum method of calculator class if I created instance of
ScientificCalculator class by assigning it to interface Itest?.
i.e.
Itest itest = new ScientificCalculator();

Now is it possible to access sum method of Calculator class through object itest?
Yes, we can access it but for that we need to cast itest object into Calculator class.

((Calculator)itest).Sum(20, 30);

If you access directly sum method then it obviously refer sum method of class
ScientificCalculator.

Mais conteúdo relacionado

Mais procurados

Lambda Expressions in C# From Beginner To Expert - Jaliya Udagedara
Lambda Expressions in C# From Beginner To Expert - Jaliya UdagedaraLambda Expressions in C# From Beginner To Expert - Jaliya Udagedara
Lambda Expressions in C# From Beginner To Expert - Jaliya UdagedaraJaliya Udagedara
 
Test driven development
Test driven developmentTest driven development
Test driven developmentXebia India
 
15review(abstract classandinterfaces)
15review(abstract classandinterfaces)15review(abstract classandinterfaces)
15review(abstract classandinterfaces)IIUM
 
Operators used in vb.net
Operators used in vb.netOperators used in vb.net
Operators used in vb.netJaya Kumari
 
Introduction of C# BY Adarsh Singh
Introduction of C# BY Adarsh SinghIntroduction of C# BY Adarsh Singh
Introduction of C# BY Adarsh Singhsinghadarsh
 
Odersky week1 notes
Odersky week1 notesOdersky week1 notes
Odersky week1 notesDoug Chang
 
Introduction to Matlab Scripts
Introduction to Matlab ScriptsIntroduction to Matlab Scripts
Introduction to Matlab ScriptsShameer Ahmed Koya
 
Templates exception handling
Templates exception handlingTemplates exception handling
Templates exception handlingsanya6900
 
Handling inputs via scanner class
Handling inputs via scanner classHandling inputs via scanner class
Handling inputs via scanner classsimarsimmygrewal
 
Storage Class Specifiers in C++
Storage Class Specifiers in C++Storage Class Specifiers in C++
Storage Class Specifiers in C++Reddhi Basu
 

Mais procurados (20)

Intake 37 4
Intake 37 4Intake 37 4
Intake 37 4
 
Presentation
PresentationPresentation
Presentation
 
Lambda Expressions in C# From Beginner To Expert - Jaliya Udagedara
Lambda Expressions in C# From Beginner To Expert - Jaliya UdagedaraLambda Expressions in C# From Beginner To Expert - Jaliya Udagedara
Lambda Expressions in C# From Beginner To Expert - Jaliya Udagedara
 
Test driven development
Test driven developmentTest driven development
Test driven development
 
Intake 37 5
Intake 37 5Intake 37 5
Intake 37 5
 
Java adapter
Java adapterJava adapter
Java adapter
 
15review(abstract classandinterfaces)
15review(abstract classandinterfaces)15review(abstract classandinterfaces)
15review(abstract classandinterfaces)
 
Operators used in vb.net
Operators used in vb.netOperators used in vb.net
Operators used in vb.net
 
Operators in java
Operators in javaOperators in java
Operators in java
 
Learn Java Part 2
Learn Java Part 2Learn Java Part 2
Learn Java Part 2
 
Introduction of C# BY Adarsh Singh
Introduction of C# BY Adarsh SinghIntroduction of C# BY Adarsh Singh
Introduction of C# BY Adarsh Singh
 
Odersky week1 notes
Odersky week1 notesOdersky week1 notes
Odersky week1 notes
 
Introduction to Matlab Scripts
Introduction to Matlab ScriptsIntroduction to Matlab Scripts
Introduction to Matlab Scripts
 
Templates exception handling
Templates exception handlingTemplates exception handling
Templates exception handling
 
Experiment 9(exceptions)
Experiment 9(exceptions)Experiment 9(exceptions)
Experiment 9(exceptions)
 
Functions
FunctionsFunctions
Functions
 
Handling inputs via scanner class
Handling inputs via scanner classHandling inputs via scanner class
Handling inputs via scanner class
 
C# - Part 1
C# - Part 1C# - Part 1
C# - Part 1
 
Inheritance
InheritanceInheritance
Inheritance
 
Storage Class Specifiers in C++
Storage Class Specifiers in C++Storage Class Specifiers in C++
Storage Class Specifiers in C++
 

Destaque

Mvc interview questions – deep dive jinal desai
Mvc interview questions – deep dive   jinal desaiMvc interview questions – deep dive   jinal desai
Mvc interview questions – deep dive jinal desaijinaldesailive
 
Top 100 .Net Interview Questions and Answer
Top 100 .Net Interview Questions and AnswerTop 100 .Net Interview Questions and Answer
Top 100 .Net Interview Questions and AnswerVineet Kumar Saini
 
MS.Net Interview Questions - Simplified
MS.Net Interview Questions - SimplifiedMS.Net Interview Questions - Simplified
MS.Net Interview Questions - SimplifiedMohd Manzoor Ahmed
 
Architecture of .net framework
Architecture of .net frameworkArchitecture of .net framework
Architecture of .net frameworkThen Murugeshwari
 

Destaque (6)

Mvc interview questions – deep dive jinal desai
Mvc interview questions – deep dive   jinal desaiMvc interview questions – deep dive   jinal desai
Mvc interview questions – deep dive jinal desai
 
200+sql server interview_questions
200+sql server interview_questions200+sql server interview_questions
200+sql server interview_questions
 
Top 100 .Net Interview Questions and Answer
Top 100 .Net Interview Questions and AnswerTop 100 .Net Interview Questions and Answer
Top 100 .Net Interview Questions and Answer
 
MS.Net Interview Questions - Simplified
MS.Net Interview Questions - SimplifiedMS.Net Interview Questions - Simplified
MS.Net Interview Questions - Simplified
 
Architecture of .net framework
Architecture of .net frameworkArchitecture of .net framework
Architecture of .net framework
 
Dotnet basics
Dotnet basicsDotnet basics
Dotnet basics
 

Semelhante a OOPS With CSharp - Implementing methods from multiple interfaces

ECET 370 Exceptional Education - snaptutorial.com
ECET 370 Exceptional Education - snaptutorial.com ECET 370 Exceptional Education - snaptutorial.com
ECET 370 Exceptional Education - snaptutorial.com donaldzs157
 
Indicate whether each of the following statements is true or false.docx
Indicate whether each of the following statements is true or false.docxIndicate whether each of the following statements is true or false.docx
Indicate whether each of the following statements is true or false.docxmigdalialyle
 
Ecet 370 Education Organization -- snaptutorial.com
Ecet 370   Education Organization -- snaptutorial.comEcet 370   Education Organization -- snaptutorial.com
Ecet 370 Education Organization -- snaptutorial.comDavisMurphyB81
 
Session 6_Java Interfaces_Details_Programs.pdf
Session 6_Java Interfaces_Details_Programs.pdfSession 6_Java Interfaces_Details_Programs.pdf
Session 6_Java Interfaces_Details_Programs.pdfTabassumMaktum
 
Session 6_Interfaces in va examples .ppt
Session 6_Interfaces in va examples .pptSession 6_Interfaces in va examples .ppt
Session 6_Interfaces in va examples .pptTabassumMaktum
 
Session 6_Interfaces in va examples .ppt
Session 6_Interfaces in va examples .pptSession 6_Interfaces in va examples .ppt
Session 6_Interfaces in va examples .pptTabassumMaktum
 
Interface
InterfaceInterface
Interfacevvpadhu
 
Still Comparing "this" Pointer to Null?
Still Comparing "this" Pointer to Null?Still Comparing "this" Pointer to Null?
Still Comparing "this" Pointer to Null?Andrey Karpov
 
MODULE_3_Methods and Classes Overloading.pptx
MODULE_3_Methods and Classes Overloading.pptxMODULE_3_Methods and Classes Overloading.pptx
MODULE_3_Methods and Classes Overloading.pptxVeerannaKotagi1
 
Jdk1.5 Features
Jdk1.5 FeaturesJdk1.5 Features
Jdk1.5 Featuresindia_mani
 
C++ Interview Question And Answer
C++ Interview Question And AnswerC++ Interview Question And Answer
C++ Interview Question And AnswerJagan Mohan Bishoyi
 
C++ questions And Answer
C++ questions And AnswerC++ questions And Answer
C++ questions And Answerlavparmar007
 

Semelhante a OOPS With CSharp - Implementing methods from multiple interfaces (20)

Interfaces c#
Interfaces c#Interfaces c#
Interfaces c#
 
ECET 370 Exceptional Education - snaptutorial.com
ECET 370 Exceptional Education - snaptutorial.com ECET 370 Exceptional Education - snaptutorial.com
ECET 370 Exceptional Education - snaptutorial.com
 
Indicate whether each of the following statements is true or false.docx
Indicate whether each of the following statements is true or false.docxIndicate whether each of the following statements is true or false.docx
Indicate whether each of the following statements is true or false.docx
 
Java 8 features
Java 8 featuresJava 8 features
Java 8 features
 
Ecet 370 Education Organization -- snaptutorial.com
Ecet 370   Education Organization -- snaptutorial.comEcet 370   Education Organization -- snaptutorial.com
Ecet 370 Education Organization -- snaptutorial.com
 
Java interface
Java interfaceJava interface
Java interface
 
Exception
ExceptionException
Exception
 
Interface
InterfaceInterface
Interface
 
Java interface
Java interfaceJava interface
Java interface
 
Notes on c++
Notes on c++Notes on c++
Notes on c++
 
Session 6_Java Interfaces_Details_Programs.pdf
Session 6_Java Interfaces_Details_Programs.pdfSession 6_Java Interfaces_Details_Programs.pdf
Session 6_Java Interfaces_Details_Programs.pdf
 
Session 6_Interfaces in va examples .ppt
Session 6_Interfaces in va examples .pptSession 6_Interfaces in va examples .ppt
Session 6_Interfaces in va examples .ppt
 
Session 6_Interfaces in va examples .ppt
Session 6_Interfaces in va examples .pptSession 6_Interfaces in va examples .ppt
Session 6_Interfaces in va examples .ppt
 
Java 2
Java   2Java   2
Java 2
 
Interface
InterfaceInterface
Interface
 
Still Comparing "this" Pointer to Null?
Still Comparing "this" Pointer to Null?Still Comparing "this" Pointer to Null?
Still Comparing "this" Pointer to Null?
 
MODULE_3_Methods and Classes Overloading.pptx
MODULE_3_Methods and Classes Overloading.pptxMODULE_3_Methods and Classes Overloading.pptx
MODULE_3_Methods and Classes Overloading.pptx
 
Jdk1.5 Features
Jdk1.5 FeaturesJdk1.5 Features
Jdk1.5 Features
 
C++ Interview Question And Answer
C++ Interview Question And AnswerC++ Interview Question And Answer
C++ Interview Question And Answer
 
C++ questions And Answer
C++ questions And AnswerC++ questions And Answer
C++ questions And Answer
 

Último

Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 

Último (20)

Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 

OOPS With CSharp - Implementing methods from multiple interfaces

  • 1. Articles from Jinal Desai .NET OOPS With CSharp 2012-11-10 13:11:59 Jinal Desai Some scenarios I came across while working with C# where OOPs funda deviated at some level to provide more flexibility. Suggest me some more scenarios if I miss anyone. Scenario # 1. Two interface having same method signature is derived by a class. How to implement methods in a class with same signature from different interfaces? We can use named identifiers to identify the common method we implemented based on two different interfaces. i.e. If there is two interfaces i1 and i2, both has one method with same signature (void test(int a)), then at the time of implementing these methods inside class “abc” we can use i1.test and i2.test to differentiate the implementation of methods from two different interfaces having same signature. Interface i1 { void test(int a); } interface i2 { void test(int a); } public class abc: i1, i2 { void i1.test(int a) { Console.WriteLine(“i1 implementation: “ + a); } void i2.test(int a) { Console.WriteLine(“i2 implementation: “ + a); } } Note : The only thing that can be noted here is that at the time of implementing test() methods from two different interfaces in a single class, the public modifier is not
  • 2. required. If you define public modifier for the implementation of test() method in class “abc” then it will give you error “The modifier ‘public’ is not valid for this item”. How to call those implemented methods from another class? To access methods implemented in a class “abc” into another class, we need to use respected interface rather than class “abc”. i.e. If I need to use method of interface i1 then I need to do code as follow. i1 testi1=new abc(); i1.test(10); Above code will call test() method of interface i1. In the similar manner we can call test() method of interface i2. If we need to call both the method with one instance of class “abc” then we need to cast “abc” class into an interface of which method we are intended to call as demonstrated below. abc testabc=new abc(); (testabc as i1).test(10); (testabc as i2).test(10); What if I has a method inside class “abc” with same signature prototyped in interface i1 and i2 (those interfaces we have implemented in class “abc”)? In that case we can call the method in a normal way with the instance of class “abc”. i.e. public class abc: i1, i2 { void i1.test(int a) { Console.WriteLine(“i1 implementation: “ + a); } void i2.test(int a) { Console.WriteLine(“i2 implementation: “ + a); } void test(int a) { Console.WriteLine(“Normal method inside the class: ” + a); } } //To call the method normally. abc testabc=new abc(); testabc.test(10); How we can access implemented method of i1 from inside the implemented
  • 3. method of i1, in a class “abc” or vice-versa? It’s simple. We need to cast “this” into respected interface to use it’s method. i.e. public class abc: i1, i2 { void i1.test(int a) { Console.WriteLine(“i1 implementation: “ + a); } void i2.test(int a) { Console.WriteLine(“i2 implementation: “ + a); (this as i1).test(a + 20); } } Scenario #2 Which are the things allowed inside an interface in case of C#? (In other way can automated property/event/delegate…etc allowed inside an interface while using C#.NET?) First thing first is method signature can be declared in an interface, it is the purpose of an interface. Except method signature, property declaration and event declaration are also allowed inside an interface. Property Declaration inside an Interface interface Itest { int a { get; set; } int b { get; set; } } The only thing you need to care here is that, you need to implement these properties in an implemented class. Compiler will not understand these declared properties as automated properties. In a class if we write properties like this then it should be considered as an automated properties, implementation is not required in that case. i.e. Implementation of properties defined in Itest class Test:ITest { int aVar = 0; int bVar = 0; public int a { get {
  • 4. return aVar; } set { aVar = value; } } public int b { get { return bVar; } set { bVar = value; } } } Event Declaration inside an Interface public delegate void ChangedEventHandler (object sender, EventArgs e); interface Itest { event ChangedEventHandler Changed; } Now to use this event inside the implemented class, following is an example. Class Test: Itest { public void BindEvent() { if(ChangedEventHandler!=null) Changed+=new ChangedEventHandler(Test_Changed); } void Test_Changed(object sender, EventArgs e) { //Event Fired } } This way you can confirm that all the implementer classes implemented the event to become sync with the interface design. So that all the classes can be called in a similar pattern designed by an interface. Scenario #3
  • 5. I have one interface Itest as defined below. Interface Itest { int sum(int a, int b); } I have implemented the interface into Calculator class as follow. Class Calculator:ITest { public int sum(int a, int b) { return (a+b); } } I have one more class named ScientificCalculator derived from Calculator class having same method with same signature. Class ScientificCalculator:Calculator { public int sum(int a, int b) { return base.sum(a,b); } } Can it be possible to access sum method of calculator class if I created instance of ScientificCalculator class by assigning it to interface Itest?. i.e. Itest itest = new ScientificCalculator(); Now is it possible to access sum method of Calculator class through object itest? Yes, we can access it but for that we need to cast itest object into Calculator class. ((Calculator)itest).Sum(20, 30); If you access directly sum method then it obviously refer sum method of class ScientificCalculator.