C# to C++
Hello All
could anyone please covert the following C# code to C++.
Thanks
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
public static byte[] ReadFixedValue(int offsset, int length, Stream stream)
{
byte[] retval = new byte[length];
stream.Read(retval, offsset, length);
return retval;
}
public static string ReadFixedValueAsText(int offsset, int length, Stream stream)
{
byte[] retval = ReadFixedValue(offsset, length, stream);
StringBuilder sb = new StringBuilder();
for (int i = 0; i < length; i++)
{
sb.Append(retval[i]);
}
return sb.ToString();
}
static void ReadFiles()
{
using (StreamReader file1 = new StreamReader("path1.txt"))
using (StreamReader file2 = new StreamReader("path2.txt"))
{
var ordID1 = ReadFixedValueAsText(10, 10, file1.BaseStream);
var ordID2 = ReadFixedValueAsText(33, 10, file1.BaseStream);
// check values here and do what you need blah blah blah!!!
}
}
|
Topic archived. No new replies allowed.