How do I declare a pure virtual function in C#?

Use the abstract modifier on the method. The class must also be marked as abstract (naturally). Note that abstract methods cannot have an implementation (unlike pure virtual C++ methods).

Comments

Popular posts from this blog

How do I calculate a MD5 hash from a string?

What is WSDL?