pluralsight-linq-fundamentals/Queries/Movie.cs

22 lines
439 B
C#
Raw Normal View History

using System;
namespace Queries
{
public class Movie
{
public string Title { get; set; }
public float Rating { get; set; }
private int _year;
public int Year {
get
{
Console.WriteLine($"Returning {_year} for {Title}");
return _year;
}
set
{
_year = value;
}
}
}
}