AjScript.Language.StringObject.ToUpperCase C# (CSharp) Method

ToUpperCase() private static method

private static ToUpperCase ( IContext context, object @this, object arguments ) : object
context IContext
@this object
arguments object
return object
        private static object ToUpperCase(IContext context, object @this, object[] arguments)
        {
            return ((string)@this).ToUpper();
        }