1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【C#】テキストファイルを任意の行を読み込む

Last updated at Posted at 2020-06-04

##自己紹介
こんにちは。tetraです。
最近C#の学習を始めました。C#歴3ヶ月目の新卒エンジニアです。
任意の行で表示したくてもテキストファイルを上から順に読む処理が出てムカついたので新しく作成します。

##ファイル読み込み
さっそく書いていきます。
1行目を出力しています。

sample.cs
using System;
using System.IO;
using System.Linq;

class sample
{
    static void Main()
    {
        // skipのパラメーターをいじると任意の行を指定できる
        int n = 0;
        string line = File.ReadLines("./sample.txt").Skip(n).First();
        Console.WriteLine(line);
    }
}

##いかがでしょうか?
いかがでしょうか。経験が浅いため至らぬところがまだまだあります。
もし間違い等に気がつきましたら、コメント又はtetraまでお知らせください。

1
2
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?