namespace structHs
{
struct customerName
{
public string firstName, secondName;
public string Name()
{
return firstName + " " + secondName;
}
}
class Program
{
static void Main(string[] args)
{
customerName myName;
myName.firstName = "Jim";
myName.secondName = "Smith";
Console.WriteLine(myName.Name());
Console.ReadKey();
}
}
}