Where can I find details of namespaces?
-
I would like to know of a resource that has details on available namespaces. for example in C++ I'd use iostream.h for i/o operations, but in C# I do not know what I would use (all I know are System and Collections, but no details on the functions within them). Can anyone suggest somewhere? Obseve everything, remember more...
-
I would like to know of a resource that has details on available namespaces. for example in C++ I'd use iostream.h for i/o operations, but in C# I do not know what I would use (all I know are System and Collections, but no details on the functions within them). Can anyone suggest somewhere? Obseve everything, remember more...
Two sources that I would recommend: .NET Framework Documentation[^], Reflector[^]. Read the documentation, ask questions about things that are unclear. HTH :)
-Nick Parker DeveloperNotes.com
-
I would like to know of a resource that has details on available namespaces. for example in C++ I'd use iostream.h for i/o operations, but in C# I do not know what I would use (all I know are System and Collections, but no details on the functions within them). Can anyone suggest somewhere? Obseve everything, remember more...
Nick's advice is what I would give you, too. But I wanted to throw in some things here: You'll also want to read articles on sites like this one and C-Sharp-Corner[^]. tom76 wrote: in C++ I'd use iostream.h for i/o operations, but in C# I do not know what I would use System.IO has many helpful classes for this - File and FileInfo for working with files, Directory for working with directories, Path for working with paths, and FileStream, TextWriter, TextReader, StreamReader, StreamWriter, etc for reading and writing to files.
**"It is impossible to rightly govern the world without God and the Bible." -- George Washington