我有 1000 个方法,称为 method0001、method0002、...、method1000。 我有一个取值在 1 到 1000 之间的变量。
如果变量的值为x,我想调用methodx。例如,如果变量的值为 34,我想调用 method0034。请问我该如何用 C# 编写这个代码?
很多人都在问 Methodwxyz 需要什么。每种方法都是不同类型的数学问题。
我已经按照有用的评论完成了此操作,但收到错误(编辑了之前的问题)
using System.Collections.Generic;
using UnityEngine;
public class TextControl : MonoBehaviour
{
public static TextControl instance;
void Start()
{
instance = this;
}
// Update is called once per frame
void Update()
{
this.GetType().GetMethod("Template00" + "1").Invoke(this, null);
}
public static string Templates001()
{
// doing something here
}
}
谢谢
红糖糍粑
相关分类