Split result read c#

Hello, I have a problem when read the message result, for example:

If use “Split” with the next message:

string _acc = h;
string txt = _acc.Split(new { ‘=’ }, StringSplitOptions.None);

result: !re.tag=sss=.id=*A0101FC=server=ServidorHotSpot=user=admin=address=10.1.1.252=mac-address=00:0C:43:AA:A3:67=login-by=http-chap=uptime=33m56s=idle-time=0s=keepalive-timeout=2m=bytes-in=1279631=bytes-out=1223311=packets-in=17268=packets-out=1952=radius=false

result value is:

!re.tag
sss
.id
*A0101FC
server
ServidorHotSpot…


But I need:

server=ServidorHotSpot
user=admin
address=10.1.1.252…


I need help…

Thanks.