اشتراک‌ها
استفاده از WinML در NET 5 .

WinML is a high-performance, reliable API for deploying hardware-accelerated ML (Machine Learning) inferences on Windows devices. Since its introduction, many developers started using this technology to develop UWP applications that leverage artificial intelligence. Throughout this blog post, we’ll understand how you can leverage WinML on a simple .NET5 Console app. 

استفاده از WinML در NET 5 .
نظرات مطالب
تنظیمات تاریخ قمری در ویندوز
CultureInfo وابسته‌است به تنظیمات سیستم عامل و تغییرات آن. این مورد بر روی ویندوز 10 اصلاح شده‌است.
 ^ Windows versions or service packs can change the available cultures

اشتراک‌ها
کنفرانس Google I/O 2019

Google I/O kicks off on Tuesday, May 7th, and while the annual developer conference goes until May 9th, most of the big announcements will happen during the 90-minute keynote starting at 1PM ET (10AM PT). 

کنفرانس Google I/O 2019
اشتراک‌ها
معرفی رسمی C# 7.3

Better late than never! Some of you may have noticed that C# 7.3 already shipped, back in Visual Studio 2017 update 15.7. Some of you may even be using the features already. 

معرفی رسمی C# 7.3
اشتراک‌ها
انتشار ویژوال استدیو ۲۰۲۲ نگارش 17.5

For .NET and cloud developers, we’ve focused on improving the inner-loop dev experience. New .http/.rest files make it easier to test and iterate on your APIs directly in Visual Studio, while improved Dev Tunnels help streamline the configuration and management of your webhooks. We’ve also made it easier than ever to deploy your ASP.NET apps to containers.

Game developers can now view properties from base classes modified in an Unreal Blueprint asset without leaving the IDE. Visual Studio has improved the cross-platform development experience with a new remote file explorer, Linux Console output to the Integrated Terminal window, dev container improvements, and more.

Beyond individuals, Visual Studio also has new features to better support dev teams at scale, with exportable configuration files and a persistent update toggle helping ensure everyone on your team is working from the latest version of the tool.

This blog covers several of the top new features in Visual Studio 17.5—to see some in action, watch the Visual Studio 17.5 release video. As always lot of these features come straight from your feedback and suggestions. Your feedback is critical to help us make Visual Studio the best tool it can be! 

انتشار ویژوال استدیو ۲۰۲۲ نگارش 17.5
اشتراک‌ها
کتابخانه linq$
$linq is a Javascript version of .NET's Linq to Objects, with some query operations inspired by MoreLinq

Some of the Linq to Objects methods implemented

  • select
  • selectMany
  • where
  • orderBy
  • thenBy
  • distinct
  • groupBy
  • groupJoin
  • join
  • except
  • union
  • intersect
  • take/takeWhile/takeUntil
  • skip/skipWhile/skipUntil
    Examples
    A simple example of breaking up a sequence of numbers into even and odd arrays:
    
    var list = $linq([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
    
    var evens = list.where(function (x) { return x % 2 == 0; }).toArray();
    var odds = list.where("x => x % 2 == 1").toArray();


کتابخانه  linq$
اشتراک‌ها
10 راهکار برای استفاده Bluetooth در Xamarin

10 راهکار برای استفاده Bluetooth در  Xamarin 

Currently, I am helping my client to develop an SDK to communicate with Bluetooth le device. I developed three SDKs: one is Xamarin, iOS native with Objective-c and Java SDK for Android. Here are some tips I found when I was developing these SDKs. I hope these will save the time for firmware and mobile developers. 

10 راهکار برای استفاده Bluetooth در  Xamarin