以下は代コード部分です:
StringWriter textBuffer = new StringWriter();
一致 match= Regex.Match(HTMLStr,@"",RegexOptions.IgnoreCase | RegexOptions.Compiled);
if(一致==null)
{
Response.Write(HTMLStr);
戻る;
文字
列 codeType = match.Groups["codeType"].Value;
文字列コンテンツ = match.Groups["codeContent"].Value;
if(codeType==String.Empty || content==String.Empty)
{
Response.Write(HTMLStr);
戻る;
}
// MessageBox.Show(codeType);
// MessageBox.Show(content);
string[] sr = content.Split(Convert.ToChar("n"));
if(codeType=="C#")
{
textBuffer.Write("<Csharp>rn");
foreach(srの文字列sourceLine)
{
textBuffer.Write(FixCSLine(sourceLine)) ;
textBuffer.Write("rn");
}
textBuffer.Write("</Csharp>");
}
else if(codeType=="JScript.Net")
{
textBuffer.Write("<JScript.Net>rn");
foreach(srの文字列sourceLine)
{
textBuffer.Write(FixJSLine(sourceLine)) ;
textBuffer.Write("rn");
}
textBuffer.Write("</JScript.Net>");
}
else if(codeType=="VB")
{
textBuffer.Write("<VB>rn");
foreach(srの文字列sourceLine)
{
textBuffer.Write(FixVBLine(sourceLine)) ;
textBuffer.Write("rn");
}
textBuffer.Write("</VB>");
}