OpenRA.StreamExts.ReadAllText C# (CSharp) Method

ReadAllText() public static method

public static ReadAllText ( this s ) : string
s this
return string
        public static string ReadAllText(this Stream s)
        {
            using (s)
            using (var sr = new StreamReader(s))
                return sr.ReadToEnd();
        }