ストリーム リーダー オブジェクト「ファイル」と文字型変数「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#では右シフトを文字列変数に適用できないため、コード行を実装する他のオプション..助けてください
この行を実装する他の方法