void AppendProperty <T>(StringBuilder debug, IMyTerminalBlock block, ITerminalProperty property)
 {
     debug.Append(" (").Append(block.GetDefaultValue <T>(property.Id)).Append(") [");
     debug.Append(block.GetMininum <T>(property.Id)).Append(',').Append(block.GetMaximum <T>(property.Id)).Append("] : ");
 }