Files
docs-desktop/dotnet-desktop-guide/net/wpf/data/snippets/binding-declarations-overview/csharp/Person.cs
T

13 lines
196 B
C#

using System;
namespace ArticleExample
{
//<Person>
class Person
{
public string Name { get; set; }
public DateTime Birthdate { get; set; }
}
//</Person>
}