<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Bekzod</title>
    <description>The latest articles on DEV Community by Bekzod (@bekzodkomilov).</description>
    <link>https://dev.to/bekzodkomilov</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F719210%2Fdf24a20a-2cc5-421d-a640-09fdf80fbf18.jpeg</url>
      <title>DEV Community: Bekzod</title>
      <link>https://dev.to/bekzodkomilov</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bekzodkomilov"/>
    <language>en</language>
    <item>
      <title>Difference between Abstract Class and Interface</title>
      <dc:creator>Bekzod</dc:creator>
      <pubDate>Thu, 21 Apr 2022 09:45:11 +0000</pubDate>
      <link>https://dev.to/bekzodkomilov/difference-between-abstract-class-and-interface-349g</link>
      <guid>https://dev.to/bekzodkomilov/difference-between-abstract-class-and-interface-349g</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                  **Abstract Class**
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;1.It contains both declaration and definition part&lt;br&gt;
2.Multiple inheritance is not achieved by abstract class&lt;br&gt;
3.It can contain static members and It contain constructor&lt;br&gt;
4.It can contain different types of access modifiers like &lt;br&gt;
 public, private, protected&lt;br&gt;
5.A class can only use one abstract class.&lt;br&gt;
6.If many implementations are of the same kind and use common behavior, then it is superior to use abstract class.&lt;br&gt;
7.It can be fully, partially or not implemented.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                   **Interface**
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;1.It contains only a declaration part&lt;br&gt;
2.Multiple inheritance is achieved by interface.&lt;br&gt;
3.It does not contain static members.&lt;br&gt;
4.It does not contain constructor.&lt;br&gt;
5.It only contains public access modifier because everything in the interface is public.&lt;br&gt;
6.A class can use multiple interface.&lt;br&gt;
7.Interface can only contains methods, properties, indexers, events.&lt;/p&gt;

</description>
      <category>codequality</category>
      <category>csharp</category>
      <category>beginners</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
