An open API service indexing awesome lists of open source software.

https://github.com/arnab-developer/polymorphism

A demo to show polymorphism in .NET
https://github.com/arnab-developer/polymorphism

c-sharp dotnet-5 polymorphism

Last synced: 10 months ago
JSON representation

A demo to show polymorphism in .NET

Awesome Lists containing this project

README

          

# Polymorphism in .NET

A demo to show polymorphism in .NET with C#. It is divided into two parts, 'static polymorphism'
and 'dynamic polymorphism'. The 'static polymorphism' is having 'indexer overloading', 'method overloading'
and 'operator overloading' and 'dynamic polymorphism' is having 'delegate polymorphism', 'interface polymorphism',
'method overriding' and 'property overriding'. Every type has its own test cases to show the usage.

* Library
* DynamicPolymorphism
* DelegatePolymorphism
* InterfacePolymorphism
* MethodOverriding
* PropertyOverriding
* SaticPolymorphism
* IndexerOverloading
* MethodOverloading
* OperatorOverloading
* Test
* DynamicPolymorphismTests
* DelegatePolymorphismTest
* InterfacePolymorphismTest
* MethodOverridingTest
* PropertyOverridingTest
* StaticPolymorphismTests
* IndexerOverloadingTest
* MethodOverloadingTest
* OperatorOverloadingTest