Does anyone know of a profiler that works with .NET 4 (beta 2)? I normally use the EQATEC profiler but it doesn't seem to be working with .NET 4 executables.
EQATEC Profiler v3.0 has just been released today and it now supports .NET 4.0.
You can get it here: http://www.eqatec.com/tools/profiler
For what it's worth, I've found plenty of performance problems in our .NET app, using the non-profiler.
VS2010 Ultimate edition comes with a profiler. It is placed in the Analyze menu. I haven't used it for anything serious yet, but it appears to be an updated version of the one that comes with the TF editions of VS2008/2005.
Related
Microsoft announced .NET Core 3 comes with WPF and Windows Forms. So can I create a desktop application for Linux or Mac using .NET Core 3?
No, they have clearly stated that these are windows only. In one of the .NET Core 3.0 discussions, they have also clarified that they do not intend to make these features cross-platform in the future since the whole concept is derived from windows specific features. They talked about thinking of a whole new idea for cross-platform applications, which is not easy.
Source: https://youtu.be/HNLZQeu05BY
Update
The newly announced .NET 5 now aims in avoiding all this confusion by no longer calling it ".NET Core".
Update 2
With blazor client-side (releases on may, 2020), there is a new experimental project for cross-platform apps using webview that is in the works.
Source:
https://blog.stevensanderson.com/2019/11/01/exploring-lighter-alternatives-to-electron-for-hosting-a-blazor-desktop-app/
No with WPF or Winforms. But you still can develop desktop apps on Linux, with .NET Core, using other libs like GtkSharp or Avalonia
Well, the name itself says Windows Presentation Foundation. So it's primarily windows based.
But it is worth to be noted that the new UI framework, .NET MAUI that will be shipped with .NET 6 is cross-platform, with a single-codebase, single-project structure.
Currently in Preview at the time of writing, to be shipped in November 2021. Here's the roadmap.
Although it is not native dotnet core on linux, but it may be helpful - using wine.
I find a very useful comment in the discussion here, more details here
In other words, it is possible to use windows version of dotnet core under wine.
I didn't try it yet, but from the article I mentioned I can say it looks nice and might be an option.
I need a complete guide on image processing and optimization with .Net Core 2.. I tried to use ImageSharp, CoreCompat.System.Drawing, SkiaSharp, non of these libraries are compatable with .net Core 2
And for sure System.Drawing is not there,, and I cannot find a way to use it,, I think it got removed from core,, I tried everything in this article https://blogs.msdn.microsoft.com/dotnet/2017/01/19/net-core-image-processing/
But I guess it is not build for .net Core 2, ,And I am stuck ... Any One Can help me understand what is happening?
SkiaSharp will work for .NET Core 2. I have a set of samples:
https://github.com/mattleibow/SkiaSharpDemo
This has a small sample for Xamarin.Forms, Xamarin native and a .NET Core console app.
Aspose.Drawing and Aspose.Imaging are cross-platform libraries for image drawing and processing supporting .NET Core 2.0+ (I'm one of the developers).
Please let me know the performance improvement factors from VS 2005 to VS 2012.
Ex: List to HashSet
I want to know the points in the above angle.
It may be more relevant to consider the differences between .Net Framework 3 and .Net Framework 4.5...
For performance improvements in .Net 4.5;
http://msdn.microsoft.com/en-us/magazine/hh882452.aspx
In general, the following describes the differences between the .Net Versions.
For .Net 4.5:
http://msdn.microsoft.com/en-gb/library/ms171868(v=vs.110).aspx
For .Net 4:
http://msdn.microsoft.com/en-gb/library/ms171868(v=vs.100).aspx
For .Net 3.5 SP1:
http://msdn.microsoft.com/en-gb/library/cc713697(v=vs.90).aspx
For .Net 3.5:
http://msdn.microsoft.com/en-gb/library/bb332048(v=vs.90).aspx
Regarding your specific example, where there may not be a direct performance improvement for converting between List and HahSet, there may be better ways of dealing with both Types in your code, for instance, Linq was introduced at .Net Framework 3.5, which isn't available as part of VS 2005.
Is there are Thread dump equivalent for .Net4. We tried using MSE from Microsoft but this does not recognize applications compiled for .Net4.0
All you need to do is to recompile MSE with .NET 4.0. Easy to do using Vadim Skipin's project on github . Good luck.
msdn shows that OnPrint(CDC* pDC, CPrintInfo* pInfo) function is supported in wince 2.0 and above version but when i made the project then it showing that CPrintInof undecalare. i searched in msdn and found that for samrt device project CprintInfo can't be used
http://msdn.microsoft.com/en-us/library/w6afzd4h%28v=vs.80%29.aspx
So how to print in wince 6.0?is there any other way.
We use the now fairly antiquated but probably still the best, PrinterCE by FieldSoftware. Can't vouch for their CE6 support but probably worth downloading the trial and having a go.