Which Among The Given Is Not A Correct Way To Call The Method #760
Which among the given is not a correct way to call the method Issue() defined in the following C# code snippet?</p> <pre><code class="language-csharp" line="1"> class Book { public void issue() { /* code */ } } class Journel { public void issue() { /* code */ } } </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Namespaces, Preprocessors and Networking - Fundamentals of Namespaces - Quiz No.1.
Which among the given is not a correct way to call the method Issue() defined in the following C# code snippet?
class Book { public void issue() { /* code */ } } class Journel { public void issue() { /* code */ } }
College.Lib.Book b = new College.Lib.Book(); b.issue();
Book b = new Book(); b.issue();
using College.Lib; Book b = new Book(); b.issue();
All of the mentioned