public string sellerName;
public string productName;
public void PrintOrderDetail()
Console.WriteLine("Seller: " + sellerName + ", Order #: " + orderNum + ", Product: " + productName);
public static void PrintOrderDetails(string sellerName, int orderNum, string productName)
Console.WriteLine("Seller: " + sellerName + ", Order #: " + orderNum + ", Product: " + productName);
public static void Main()
Console.WriteLine("Hello");
Order o = new Order{productName = "Red Mug", sellerName = "Gift Shop", orderNum = 31};
Order.PrintOrderDetails(orderNum: 31, productName: "Red Mug", sellerName: "Gift Shop");
Order.PrintOrderDetails(productName: "Red Mug", sellerName: "Gift Shop", orderNum: 31);