nbsp;== null || Text.Length == 0 )
return ;
InnerWrite('' '');
for( int iCount = 0 ; iCount < Text.Length ; iCount ++ )
{
char c = Text[ iCount ] ;
if( c == ''\t'')
{
this.WriteKeyword("tab");
InnerWrite('' '');
}
else if( c < 256 )
{
if( c > 32 && c < 127 )
{
// 出现特殊字符,需要斜线转义
if( c == ''\\'' || c == ''{'' || c == ''}'' )
InnerWrite( ''\\'');
InnerWrite( c );
}
else
{
InnerWrite("\\\''");
WriteByte( ( byte ) c );
}
&nb