mirror of
https://github.com/github/codeql.git
synced 2026-02-21 01:13:43 +01:00
10 lines
139 B
C#
10 lines
139 B
C#
class Person
|
|
{
|
|
private string name;
|
|
private int age;
|
|
public Person(string name, int age)
|
|
{
|
|
this.age = age;
|
|
}
|
|
}
|