Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does "System.IO" mean in C#? [closed]

Tags:

c#

.net

I'm in my first year studying .Net and came to the chapter, "An Introduction to the System.IO classes"

I'm just curious to know what the .IO stands for. I do understand that this is learning about how to use Directories, Files and paths.

like image 661
user1754874 Avatar asked Nov 11 '12 02:11

user1754874


3 Answers

IO itself stands for Input/Output.

This is the entire System.IO namespace: http://msdn.microsoft.com/en-us/library/system.io.aspx

You're probably going to cover directories, files, and streams.

like image 50
Robert Rouhani Avatar answered Sep 28 '22 15:09

Robert Rouhani


'IO' is the standard acronym for Input/Output. The System.IO namespace contains all the classes that deal with input/outputs like reading/writing files.

like image 23
Marcel Gosselin Avatar answered Sep 28 '22 15:09

Marcel Gosselin


IO stands for Input and Output. Basically System.IO contains methods for reading and writing files as well as using Streams like you have said already.

like image 20
matthewr Avatar answered Sep 28 '22 16:09

matthewr