Interview Questions

Which is the correct statement to set the alias name for namespace in C#?

ASP.NET and .NET WEB Questions and Answers


(Continued from previous question...)

Which is the correct statement to set the alias name for namespace in C#?

Which is the correct statement to set the alias name for namespace in C#?
* using System Data.OracleClient = aliasName;
* using aliasName = System.Data.OracleClient;
* string aliasName = using.System.Data.OracleClient;
* Both a & b


using aliasName = System.Data.OracleClient;

(Continued on next question...)

Other Interview Questions