sp; }
else
{
byte bs = myEncoding.GetBytes( c.ToString());
for(int iCount2 = 0 ; iCount2 < bs.Length ; iCount2 ++ )
{
InnerWrite("\\\''");
WriteByte( bs[ iCount2 ] );
}
}
}//for( int iCount = 0 ; iCount < Text.Length ; iCount ++ )
}
/// <summary>
/// 当前位置
/// </summary>
private int intPosition = 0 ;
/// <summary>
/// 当前行的位置
/// </summary>
private int intLineHead = 0 ;
/// <summary>
/// 16进制字符组
/// </summary>
private const string Hexs = "0123456789abcdef";
/// <summary>
/// 输出字节数组
/// </summary>
/// <param name="bs">字节数组</param>
public void WriteBytes( byte bs )
{
if( bs == null || bs.Length == 0 )
return ;
WriteRaw( " " );
for( int iCount = 0 ; iCount < bs.Length ; iCount ++ )
{
if( ( iCount % 32 ) == 0 )
&nb