0
0

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.

ラムダ式プロパティは結果をキャッシュしない

Posted at
using System;

namespace SampleLambdaProperty
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            var v = new Sample();
            var u = v.Property;
            // 二度目は何も変わっていないが,メソッドは再び呼ばれている.
            var u2 = v.Property;
        }
    }

    class Sample
    {
        public int Property => GetValue();
            
        private int GetValue()
        {
            Console.WriteLine("Method Called!");
            return 2;
        }
    }
}
0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?