我有一个流阅读器对象“文件”和一个字符类型变量“十六进制”
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#中右移不能应用于字符串变量,所以任何其他选项来实现代码行..请任何帮助
实现此行的任何其他方式