Klak.Wiring.VectorOutEditor.CachePropertyList C# (CSharp) Méthode

CachePropertyList() private méthode

private CachePropertyList ( Type type ) : void
type System.Type
Résultat void
        void CachePropertyList(Type type)
        {
            if (_cachedType == type) return;

            _propertyList = type.GetProperties().
                Where(x => IsTargetable(x)).Select(x => x.Name).ToArray();

            _cachedType = type;
        }