将文本存储到 String[] 数组?

Store Text to String[] Arrays?

如何使用 C# 将数据文本存储到 windows 存储中的字符串或数组中? 我试过这个方法,但没有用:

 string[] phparay ={@"F:\Designe- Video\projects\Phpgonehelp\Phpgonehelp\PHPCODE\Php1.txt"};

我以为这会执行文本文件中的任何数据,但不幸的是它只打印文本路径。

我想你要找的是这个:

string[] lines = System.IO.File.ReadAllLines(@"F:\Designe- Video\projects\Phpgonehelp\Phpgonehelp\PHPCODE\Php1.txt");

这取自 https://msdn.microsoft.com/en-us/library/ezwyzy7b.aspx