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

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

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