clojure.lang.Compiler.LengthCmp.Compare C# (CSharp) 메소드

Compare() 공개 메소드

public Compare ( object x, object y ) : int
x object
y object
리턴 int
            public int Compare(object x, object y)
            {
                return ((String)y).Length - ((String)x).Length;
            }
Compiler.LengthCmp