csharp string to memorystream

Code Example - csharp string to memorystream

                
                        public static MemoryStream GenerateStreamFromString(string value)
{
    return new MemoryStream(Encoding.UTF8.GetBytes(value ?? ""));
}