gpt4 book ai didi

c# - 在 XBAP 应用程序中包含外部文件

转载 作者:太空宇宙 更新时间:2023-11-03 14:10:33 24 4
gpt4 key购买 nike

如何在 XBAP 应用程序中包含外部文件?例如,我需要从中提取一些数据的 .dat 文件?我希望一切都发生在 .xbap 文件中,这可能吗?

最佳答案

byte[] ba = Properties.Resources.yourfilename;
//set Build Action to Resource and Rebuild
using (var compressedStream = new MemoryStream(ba))
using (var zipStream = new GZipStream(compressedStream, CompressionMode.Decompress))
using (var resultStream = new MemoryStream())
{
zipStream.CopyTo(resultStream);
ba1 = resultStream.ToArray();
}

关于c# - 在 XBAP 应用程序中包含外部文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8008505/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com