Replies: 2 comments 2 replies
-
|
I'm still very concerned about the entire feature on public unsafe void Method1(int[] array)
{
fixed (int* ptr = array)
{
// proceed with the pointer
}
}
void Method2()
{
int[] array = WhatEver();
Method1(array);
}If I'm understanding correctly, calling |
Beta Was this translation helpful? Give feedback.
-
|
I notice that the language design team seems much more open to breaking changes now than in past years (C# 12 and earlier). What caused this shift? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
https://github.com/dotnet/csharplang/blob/main/meetings/2025/LDM-2025-11-12.md
Agenda
Beta Was this translation helpful? Give feedback.
All reactions