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

Q

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

✍: Guest

A

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;

2014-07-28, 1492👍, 0💬