HomeCSharpHow to Convert a string to a stream in C# ?

How to Convert a string to a stream in C# ?

Do you want to convert a string to a stream in C# ? . Below is a sample code snippet that demonstrates how to do it.

How to Convert a string to a stream in C# ?

using System;
using System.IO;

namespace GKApp
{
    class Program
    {
        static void Main(string[] args)
        {
            string input = "TestGK";
            using (var streamData = ConvertStringToStream(input))
            {

            }
        }
        // Method to convert a string to stream in C#
        public static Stream ConvertStringToStream(string s)
        {
            MemoryStream memStream = new MemoryStream();
            StreamWriter streamWriter = new StreamWriter(memStream);
            streamWriter.Write(s);
            streamWriter.Flush();
            memStream.Position = 0;
            return memStream;
        }
    }
    
}

Leave a Reply

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...