BBGamelib.FileUtils.ReadStringFromPath C# (CSharp) Method

ReadStringFromPath() static private method

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