cart: empty [ Login ]

Write property will become '? '

1 
lmdd
2/16/2022 1:26 AM
// My source code // I can only paste the code in this way because my company files are encrypted class Program { static string strInFileName = "./example_2004.dwg"; static string strOutFileName = "./Out_example_2004.dwg"; static void Main(string[] args) { DxfModel model = DwgReader.Read(strInFileName); model.SummaryInfo.Properties.Clear(); model.SummaryInfo.Properties.Add(new SummaryInfo.Property("中文key", "中文value")); DwgWriter.Write(strOutFileName, model); }
Wout
2/16/2022 2:09 PM
Hi, I've just fixed this in the CadLib 4.0/5.0 trial versions. - Wout
lmdd
2/17/2022 5:36 AM
hi, My trial license expired but I still have some work to do Is there any other way I can get it and try it out
Wout
2/17/2022 9:05 AM
Hi, What CadLib version are you using, 4.0? I don't see any activated trials for your user for 5.0/.NET Standard. - Wout
lmdd
2/17/2022 9:09 AM
yes 4.0
Wout
2/17/2022 9:20 AM
I've sent you an e-mail with information. - Wout
lmdd
2/17/2022 9:27 AM
thanks
1