archive
/
product-list
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
product-list/Base.cs

13 lines
130 B
C#
Raw Permalink Normal View History

2016-05-06 10:12:39 +01:00
using System;
namespace productlist
{
class Base
{
public string getName() {
return this.getType().Name;
}
}
}