One of the overloads string.Split accepts params char[] - you can use any number of characters to separate:
string isVery = text.Split(':', '#')[1];
Note that I use this overload and take the second element from the returned array.
However, as @Guffa noted in his answer , what you are doing is not really a section, but it extracts a specific substring, so using his approach might be better.
Odded
source share