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

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

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