Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace BetterThanTuple
- {
- class Program
- {
- static void Main(string[] args)
- {
- var result = GetResultAndName();
- Console.WriteLine(result.name);
- Console.WriteLine(result.price);
- }
- public static (int price, string name) GetResultAndName()
- {
- return (4, "Pesho");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement