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
How to sign out from forms authentication?
What is the current version of asp.net?
What is the maximum number of classes that can be contained in one dll file?
What is the difference between adding reference in solution explorer and adding references by using ?
Name the two properties are on every validation control?
What is slidemaster?
Which method has beenintroduced in asp.net 4.0 to redirect a page permanently?
Explain the Session state management options available with ASP.NET?
Explain what is clr?
What are the different session state management options available in asp.net?
Can you edit data in the Repeater control? Which template must you provide, in order to display data in a Repeater control? How can you provide an alternating color scheme in a Repeater control? What property must you set, and what method must you call in your code, in order to bind the data from some data source to the Repeater control?
What is Web API Routing?
Explain about consistent programming model in the .NET framework?
What is a form tag?
What symbol would you use to denote, the start of a code block in aspx views?