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

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...