MethodInfoClass.csusing System;using System.Reflection;using UnityEngine;namespace ReflectTest.CreateInstance{ class Profile2 { public string Name { get; set; } public string Phone { get; set; } public void Print() { Debug.Log($"{Name}, {Phone}"); } } public class MethodInfoClass : MonoBehaviour { private void Start() ..