System.IO.IsolatedStorage.TestHelper.WriteAllText C# (CSharp) Method

WriteAllText() public static method

public static WriteAllText ( this stream, string content ) : void
stream this
content string
return void
        public static void WriteAllText(this IsolatedStorageFileStream stream, string content)
        {
            byte[] buffer = Encoding.UTF8.GetBytes(content);
            stream.Write(buffer, offset: 0, count: buffer.Length);
        }

Same methods

TestHelper::WriteAllText ( this isf, string fileName, string content ) : void