AcTools.Utils.FileUtils.ReadAllText C# (CSharp) Method

ReadAllText() public static method

public static ReadAllText ( string filename ) : string
filename string
return string
        public static string ReadAllText(string filename) {
            var bytes = File.ReadAllBytes(filename);
            return bytes.ToUtf8String();
        }
    }