ALFA.Shared.LightResource.CompareTo C# (CSharp) 메소드

CompareTo() 공개 메소드

public CompareTo ( IListBoxItem other ) : int
other IListBoxItem
리턴 int
        public int CompareTo(IListBoxItem other)
        {
            LightResource light = other as LightResource;
            if (light != null) return CompareTo(light);
            return 0;
        }

Same methods

LightResource::CompareTo ( LightResource other ) : int