Files
2021-01-04 05:26:43 +01:00

33 lines
802 B
C#

/*
Copyright 2017-2021 Katy Coe - http://www.djkaty.com - https://github.com/djkaty
Copyright 2020 Robert Xiao - https://robertxiao.ca
All rights reserved.
*/
using System;
using System.Linq;
/* C# 3.0 feature test */
namespace Il2CppTests.TestSources
{
public class FeatureTest
{
public string AutoProp { get; set; }
public void AnonType() {
var c = new { Value = 3, Message = "Nobody" };
Console.WriteLine(c);
}
public int Linq() {
var scores = new int[] { 1, 2, 3, 4 };
var highScoresQuery =
from score in scores
where score > 80
orderby score descending
select score;
return highScoresQuery.Count();
}
}
}