String to stream
string-to-stream.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<%@ Import Namespace="System.IO" %>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
//this section create a string variable.
string birds = "Snow Goose. Egyptian Goose. Northern Fulmar.";
MemoryStream ms = new MemoryStream();
StreamWriter sw = new StreamWriter(ms);
sw.Write(birds);
sw.Flush();
ms.Position = 0;
//another way to convert string to stream
//byte[] byteArray = Encoding.UTF8.GetBytes(birds);
//MemoryStream ms = new MemoryStream(byteArray);
Label1.Text = "string of birds..................<br />";
Label1.Text += birds;
StreamReader reader = new StreamReader(ms);
string convertedString = reader.ReadToEnd();
Label1.Text += "<br /><br />stream to string..................<br />";
Label1.Text += convertedString;
Label1.Text += "<br /><br />type of the current instance (stream).........<br />";
Label1.Text += ms.GetType();
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - string to stream</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:MidnightBlue; font-style:italic;">
c# example - string to stream
</h2>
<hr width="550" align="left" color="Gainsboro" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="Large"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="string to stream"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>

- How to format a string as currency without decimal
- How to perform regex case insensitive string replace
- How to replace a character in a string from a starting index
- How to check whether a string ends with specific substring
- How to check whether a string starts with specific substring
- How to convert a string to a bool
- How to convert string to ascii values
- How to convert a string to an arraylist
- How to convert a string to an int array
- How to split a string to key value pairs