By Harald Safranek on Tuesday, 23 July 2019
Posted in C# Development
Likes 0
Views 1K
Votes 0
Hello,

I have to load the equipment tree from a project incl. some attribute values to memory. Becouse it's a really big tree I've used ObjectItem.ExportXml to get the xml representation an then deseialized the xml to a c# object model in memory.
This works fine and really fast, but...

I need translated attribute values as dictionary reference like <0:53-11>.

With ExportXml I either can configure to translate text to plain text or to export the dictionary references in a representation like this @AAL0AADF.

Question

How to convert @AAL0AADF to <0:53-11>?
Just need an idea how to do...
View Full Post