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

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

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