using System; string text = "abc:def"; ReadOnlySpan<char> prefix = text.AsSpan(0, 3); text = "xyz"; Console.WriteLine(prefix.ToString()); Console.WriteLine(text);