吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1144|回复: 2
收起左侧

[求助] 【C#】能否把方法中的参数转object数组

[复制链接]
ceaom 发表于 2020-6-8 21:46
object[] test(bool a, string b, int c)
{
            //如何自动把方法的参数转object数组,代码实现相当于 new object[]{a, b, c};的功能
            //return new object[]{a, b, c};
}

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

小范 发表于 2020-6-9 00:14
[C#] 纯文本查看 复制代码
// 定义一个类

public class TBin()
{
    public bool a {get; set;}
	public string b {get; set;}
	public int  c {get; set;}
}


// 调用
private TBin test(bool a, string b, int c)
{
	return new TBin(){a=a,b=b,c=c};
}
隐士高人 发表于 2020-7-10 15:10
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 14:46

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表