Shaun Reed d1fb33c58e [dotnet] Add dotnet projects and examples
+ Sitemap generator I created while learning the dispose pattern
+ Testing project for learning general C#
2022-05-04 14:59:17 -04:00

20 lines
269 B
C#

using System.Collections.ObjectModel;
namespace KlipsLibrary;
public class Fruit
{
public Fruit()
{
Name = "Default";
}
public Fruit(string name)
{
Name = name;
}
public string Name { get; set; }
}
public class Fruits : Collection<Fruit> { }