Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,948 questions

51,890 answers

573 users

How to convert class to interface in C#

1 Answer

0 votes
using System;

interface INFC {
    void Show();
}

class Test : INFC {
    public void Show() {
        Console.WriteLine("Show()");
    }
}

class Program
{
    static void Main()
    {
        Test t = new Test();
        t.Show();

        INFC iface = t as INFC;
        if (iface != null) {
            iface.Show();
        }
    }
}



/*
run:

Show()
Show()

*/

 



answered Sep 11, 2020 by avibootz

Related questions

2 answers 161 views
1 answer 192 views
192 views asked Sep 11, 2020 by avibootz
1 answer 139 views
139 views asked Apr 27, 2017 by avibootz
2 answers 219 views
219 views asked Apr 25, 2017 by avibootz
1 answer 137 views
137 views asked Dec 21, 2016 by avibootz
...