AjTalk.Language.DotNetObject.GetAtMethod C# (CSharp) Method

GetAtMethod() private static method

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