SOLVED – How linq order by a Hyphen

A list contains a structure like that: ColumnA 0+ABC0-ABC0001000200030004 then sort the list using order by like list. OrdeBy(o=>o.ColumnA).ToList(), the below is the result: 0+ABC00010002000300040-ABC So the question is why “0+ABC” at the top of the list but “0-ABC” is put to the end. it looks like linq sort “+” and “–” using different methods. […] Continue reading →

SOLVED – Can Outlook custom properties in an email be viewed by another user?

Developing an add-in that saves custom properties on an e-mail using the “saveAsync” method of the Office-js api: https://docs.microsoft.com/en-us/javascript/api/outlook/office.customproperties?view=outlook-js-preview#outlook-office-customproperties-saveasync-member. You can view the properties if you create the e-mail, save the properties using the add-in and send it to yourself. However, if you send that same email to another user, that user is not able […] Continue reading →