public static void WriteFileStreamFromArray(string FilePath, byte[] b)
{
FileStream fs = null;
try
{
fs = new FileStream(FilePath,FileMode.Append);
fs.Write(b, 0, b.Length);
}
finally
{
fs.Close();
}
}
Difference between Rollup and Cube
14 years ago
No comments:
Post a Comment