代码
using System;
namespace ConsoleApp7
{
public class A {
public override string ToString()
{
return "a to string";
}
}
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
(int i, string s, A a) yuanzhu = (4, "str", new A());
Console.WriteLine($"yuanzhu.i:{yuanzhu.i} yuanzhu.s: {yuanzhu.s} yuanzhu.a: {yuanzhu.a}");
}
}
}

博客内容提及代码,但信息有限,推测围绕代码展开相关讨论,可能涉及代码编写、应用等信息技术方面。
390

被折叠的 条评论
为什么被折叠?



