You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using trienet within my UWP App, however I had to remove all the calls to string.Intern() (here and here), and replace them by simple string assignements such as m_Origin = origin, because the .NET team decided to remove methods which they "regretted adding in the first place, or restricted our plans around innovating for the future." (according to David Kean).
However, I'm guessing this has a negative impact on performance. Is there anyway to limit this?
The text was updated successfully, but these errors were encountered:
I am using trienet within my UWP App, however I had to remove all the calls to
string.Intern()
(here and here), and replace them by simple string assignements such asm_Origin = origin
, because the .NET team decided to remove methods which they "regretted adding in the first place, or restricted our plans around innovating for the future." (according to David Kean).However, I'm guessing this has a negative impact on performance. Is there anyway to limit this?
The text was updated successfully, but these errors were encountered: