I am trying to append data to memcached using C# Enyim.Caching but it forces me to send data as ArraySegment
public bool Append(string key, ArraySegment<byte> data);
How do I convert a string or array of strings to ArraySegment ?
Is there a better way to use Append?