Created
April 26, 2021 17:16
-
-
Save luisdeol/3816ed37bf054c17937c5cfe6cbd2bd0 to your computer and use it in GitHub Desktop.
Artigo LINQ #1: Classe Student
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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