We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
//Asynchronous System.IO.File.ReadAllText(System.IO.Path.Combine("path","file.txt"),function(content){ console.log(content); }) //synchronize var content = System.IO.File.ReadAllText(System.IO.Path.Combine("path","file.txt")); console.log(content);