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