BBGamelib.FileUtils.ReadStringFromPath C# (CSharp) Méthode

ReadStringFromPath() static private méthode

static private ReadStringFromPath ( string path ) : string
path string
Résultat string
		static string ReadStringFromPath(string path){
			string text = System.IO.File.ReadAllText(path);
			return text;
		}