This commit is contained in:
Michael D 2018-10-08 23:10:15 +02:00
Родитель fabd404c56
Коммит abe474b662
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -23,7 +23,7 @@ This interop code often has to deal with handles, unmanaged memory, or even just
The runtime provides support for this by defining a set of operators that can be used on the `native int` (`System.IntPtr`) and `native unsigned int` (`System.UIntPtr`) primitive types.
C# has never supported these operators and so users have to workaround the issue. This often increases code complexity and lowers code maintainability.
C# has never supported these operators and so users have to work around the issue. This often increases code complexity and lowers code maintainability.
As such, the language should begin to support these operators to help advance the language to better support these requirements.