You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mchsamples-.net-core/ex_031_012_LINQ_joining/Enfant.cs

35 lines
755 B

// ========================================================================
//
// Copyright (C) 2016-2017 MARC CHEVALDONNE
// marc.chevaldonne.free.fr
//
// Module : Enfant.cs
// Author : Marc Chevaldonné
// Creation date : 2016-10-04
//
// ========================================================================
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ex_031_012_LINQ_joining
{
class Enfant
{
public string Prénom
{
get;
set;
}
public string NounoursPréféré
{
get;
set;
}
}
}