gpt4 book ai didi

c# - 如何使用 C# 打印文本文件

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

<分区>

如何在 C# 中打印文本文件?在控制台应用程序中。

这是我找到的:msdn sample还有这个stackoverflow:answer is the msdn sample

链接中的代码适用于 Windows 窗体应用程序,不适用于控制台应用程序。

这是我发现的:

    string fileName = @"C:\data\stuff.txt";
ProcessStartInfo startInfo;
startInfo = new ProcessStartInfo(fileName);

if (File.Exists(fileName))
{
int i = 0;
foreach (String verb in startInfo.Verbs)
{
// Display the possible verbs.
Console.WriteLine(" {0}. {1}", i.ToString(), verb);
i++;
}
}

startInfo.Verb = "print";
Process.Start(startInfo);

既然你说这个问题是题外话而且不相关,这里是我正在尝试学习的链接:This is documentation of the .Net framework这就是我问这个问题的原因,我正在尝试了解 .Net 类的各种用途。

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