我有一个流阅读器对象“file”和一个字符类型变量“hex”
System.IO.StreamReader file = new System.IO.StreamReader(filename);
char[] hex=new char[20];
int @base;
我想要实现的代码是
string line;
while ((line=file.ReadLine()) != null) //Reading each address from trace file
{
if (@base != 10)
{
line >> hex;
///this line giving errors, as shift right cannot be implemented on string types
address = changebase(hex, @base);
}
else
line >> address;
我正在制作缓存内存命中项目。 但是在c#中右移不能应用于字符串变量,所以任何其他选项都要实现代码行..请任何帮助
实现此行的任何其他方式