معرفی پلتفرم یکپارچه‌ای برای تولید رابط کاربری برنامه‌های چندسکویی مبتنی بر NET.
200, OK
https://devblogs.microsoft.com/dotnet/introducing-net-multi-platform-app-ui/ icon

Introducing .NET Multi-platform App UI
.NET MAUI simplifies the choices for .NET developers, providing a single stack that supports all modern workloads: Android, iOS, macOS, and Windows.
 

معرفی پلتفرم یکپارچه‌ای برای تولید رابط کاربری برنامه‌های چندسکویی مبتنی بر NET.
خروجی‌های Covariant به زودی در NET runtime.
200, OK
https://github.com/dotnet/runtime/pull/35308#issuecomment-624043389 icon

Work in progress to add support for covariant return types to the .NET runtime. Soon we'll be able to override a virtual method returning `object` with a method returning `string`. Because of how array variance works, weird things might be possible in IL. 

class Base
{
    public virtual IntPtr[] Fun() => null;
}

// This is obvious pseude-code because C# won't let us introduce methods differing
// in return type. C# also requires to be explicit about "virtual" and "override".
// But IL... not so much.
class Derived : Base
{
    // overrides Base.Fun on 32bit platforms.
    public override uint[] Fun() => null;

    // overrides Base.Fun on 64bit platforms.
    public override ulong[] Fun() => null;
}
خروجی‌های Covariant به زودی در NET runtime.
وضعیت پشتیبانی از ASP.NET Web Forms چگونه است؟
301, MovedPermanently
https://medium.com/young-coder/did-asp-net-web-forms-need-to-die-4b7bce958aaa icon

طول عمر آن به طول عمر ویندوز 10 و NET 4.8. که تا سال 2025 پشتیبانی می‌شوند، گره خورده است؛ اما ... نگارش بعدی دات نت یا نگارش 5، دیگر به همراه Web Forms نیست.

وضعیت پشتیبانی از ASP.NET Web Forms چگونه است؟
کدهای Pascal را توسط NET. اجرا کنید
301, MovedPermanently
http://pascalabc.net/en/ icon

PascalABC.NET is:

  • The new generation Pascal programming language that combines simplicity of classic Pascal, a great number of modern extensions and broad capabilities of Microsoft .NET Framework.
  • Free, simple and powerful IDE.
  • Built-in form designer for rapid development of Windows desktop applications.
  • Free LGPLv3 license. 
کدهای Pascal را توسط NET. اجرا کنید