如何使用txt文件作为命令行参数

如何使用txt文件作为命令行参数

本文介绍了如何使用txt文件作为命令行参数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个.txt文件,如下所示:

6 4

1 2

2 3

3 4

4 5

1 2 4 5

I have a .txt file like this:
6 4
1 2
2 3
3 4
4 5
1 2 4 5

如何将其用作命令C#中的行参数?

How can I use this as command line argument in C#?

推荐答案

如果要提供程序数据 program.exe< data.txt ,这称为从标准输入中读取。您可以通过.NET的使用

If you intend to give your program data program.exe < data.txt, this is called reading from standard input. You can do this via .NET's Console.OpenStandardInput with

new StreamReader(Console.OpenStandardInput())






或者,如果您希望运行程序 program.exe data.txt

void Main(string[] args)
{
    File.ReadLines(args[0])
}

这篇关于如何使用txt文件作为命令行参数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 17:31