answersLogoWhite

0


Best Answer

system.io

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which is not a major namespace in .net?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is Namespace in NET framework?

They are(simply put) the things that you import.... EXAMPLE: VB Import (namespace) C# Using (namespace)


What is the namespaces in Net framework?

They are(simply put) the things that you import.... EXAMPLE: VB Import (namespace) C# Using (namespace)


What are namespaces in net?

A Namespace is the term used in .net to package coherent types. Namespaces is plural of that term.A namespace also provides a context shorthand, to avoid otherwise would be verbose reference.


Which namespace of the NET Framework do you use to create metadata dynamically at runtime?

System.Runtime


Words that are related to NET?

enum namespace attend garnish class meet elongated indo gloom private crass bilate rivet dash decimal


What is sqldataadapter in net?

SqlDataAdapter class belongs to the System.Data.SqlCient namespace. It provides a set of data commands to fill a dataset from results returned during a SQL query.


What is SqlDataAdapter in dot Net?

SqlDataAdapter class belongs to the System.Data.SqlCient namespace. It provides a set of data commands to fill a dataset from results returned during a SQL query.


What are some disadvantages of using namespace in C?

Here's one: there's no namespace in C


What is the user folder for an account that contains a group of subfolders called?

profile namespace


Can you have nested namespace?

Of course! All namespaces are nested by default since all namespaces exist in the global namespace. A class is also a namespace; therefore classes can also be nested.


What is the guidelines for a discontiguous network?

A discontiguous network comprises a major net that separates another major net


Is a public function accessed like a non-member function?

A public function is scoped to the class in which it is declared. If declared non-static, then it must be invoked against an instance of the class but if declared static then namespace resolution is required to access the function. A non-member function is not scoped to any class but may be scoped to a namespace. If no namespace is specified, then it is scoped to the (unnamed) global namespace. If scoped to any other namespace then namespace resolution is required to access the function.