| 1. | Which of the following statments are the correct way to call the method Issue() defined in the code snippet given below? namespace College 1 College.Lib.Book b = new College.Lib.Book(); 2 Book b = new Book(); 3 using College.Lib; 4 using College; 5 using College.Lib.Book; |
|||||||
Answer: Option A Explanation: No answer description available for this question. Let us discuss.
|
