13 lines
250 B
C#
13 lines
250 B
C#
using ExF.Class;
|
|
|
|
internal class Program
|
|
{
|
|
private static void Main(string[] args)
|
|
{
|
|
MyCustomer customer1 = new MyCustomer();
|
|
MyCustomer customer2 = new();
|
|
var customer3 = new MyCustomer();
|
|
|
|
|
|
}
|
|
} |