we are working in .net namespaces like using
system.io,system.text. these namespace before we
use "using " keyword what means of using?
Answer Posted / smriti
With the help of the keyword using, it is possible to
create an alias name for a namespace or type. For example
using con = System.Console; // Create an alias
class MyClient
{
public static void Main()
{
con.WriteLine("Hey rajesh! how you");
}
}
| Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
What is asp.net? How is it different from asp?
What is the biggest disadvantage of “Other Return Types” in Web API?
How to register exception filter globally?
What is a uri query?
Where viewstate value is stored in asp.net?
What kind of programming language is ASP.NET?
How can you implement encapsulation in asp.net?
What is caching? Explain.
How does http session work?
What is hidden field in asp.net?
What is session object? Describe in detail.
What is meant by web application?
How do you open a page in a new window?
What does passport and windows authentication mean in ASP.NET?
What is considered a service provider?