Alexandria.Engines.Unreal.Core.ObjectProperty.PropertiesToString C# (CSharp) Метод

PropertiesToString() защищенный Метод

Adds the Object to the list of properties, if it is not null.
protected PropertiesToString ( ) : string
Результат string
        protected override string PropertiesToString()
        {
            string text = base.PropertiesToString();
            if(Object != null)
                text += ", Object: " + Object.ToString();
            return text;
        }
ObjectProperty