AjTalk.Language.DotNetObject.GetAtMethod C# (CSharp) 메소드

GetAtMethod() 개인적인 정적인 메소드

private static GetAtMethod ( System.Machine machine, object obj, object args ) : object
machine System.Machine
obj object
args object
리턴 object
        private static object GetAtMethod(Machine machine, object obj, object[] args)
        {
            return obj.GetType().GetProperty((string)args[0]).GetValue(obj, new object[] { args[1] });
        }