AjScript.Language.StringObject.ToLowerCase C# (CSharp) 메소드

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

private static ToLowerCase ( IContext context, object @this, object arguments ) : object
context IContext
@this object
arguments object
리턴 object
        private static object ToLowerCase(IContext context, object @this, object[] arguments)
        {
            return ((string)@this).ToLower();
        }