K
KennethSoona
content=Regex.Replace(content, @"/*Offline*/", @"//Offline");
content=Regex.Replace(content, @"//Online", @"/*Online*/");
Second line works fine but the first didn't!
I think the problem are the "*" in the first line.
Is it a bug?
content=Regex.Replace(content, @"//Online", @"/*Online*/");
Second line works fine but the first didn't!
I think the problem are the "*" in the first line.
Is it a bug?