TraktPlugin.GUI.GUICommon.SetProperty C# (CSharp) Méthode

SetProperty() static private méthode

static private SetProperty ( string property, List value ) : void
property string
value List
Résultat void
        internal static void SetProperty(string property, List<string> value)
        {
            string propertyValue = value == null ? "--" : string.Join(", ", value.ToArray());
            GUIUtils.SetProperty(property, propertyValue);
        }

Same methods

GUICommon::SetProperty ( string property, bool value ) : void
GUICommon::SetProperty ( string property, int value ) : void
GUICommon::SetProperty ( string property, string value ) : void