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#

using System;
namespace productlist
{
class Base
{
public string getName() {
return this.getType().Name;
}
}
}