Created
December 9, 2012 20:37
-
-
Save xcriptus/4246865 to your computer and use it in GitHub Desktop.
StarUML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getFileContent(/*String!*/ filename) { | |
var file=fileSystem.OpenTextFile(filename,/*ForReading*/ 1, /*DoNotCreate*/false) ; | |
var text=file.ReadAll() ; | |
file.Close() ; | |
return text ; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment