Skip to content

Instantly share code, notes, and snippets.

@luisdeol
Created April 26, 2021 17:16
Show Gist options
  • Save luisdeol/3816ed37bf054c17937c5cfe6cbd2bd0 to your computer and use it in GitHub Desktop.
Save luisdeol/3816ed37bf054c17937c5cfe6cbd2bd0 to your computer and use it in GitHub Desktop.
Artigo LINQ #1: Classe Student
namespace ArtigoLinqParteUm
{
public class Student
{
public Student(string name, int grade)
{
Name = name;
Grade = grade;
}
public string Name { get; set; }
public int Grade { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment