It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I'm particularly interested in some Visual Studio plugins (or maybe built-in functionality I don't know of) that can help me with that...
You can do this with perfmon - can I suggest you read this article on MSDN magazine that describes auditing memory in detail:
http://msdn.microsoft.com/en-us/magazine/dd882521.aspx
Good luck!
System.Process has a lot of properties you can use to analyse memory usage.
You can get a handle on the current process like this Process.GetCurrentProcess() or another process using one the Process.GetProcessXXX(..) methods
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I'm trying to understand how to use MEF.
Could someone point me to or provide an example of loading multiple .dlls from a directory.
Each of those dlls will have the same void method. void start().
There are no values that need to be returned.
Also I would need to make sure the .dlls are ment to be in the folder and not try to load/run if they don't belong.
Thanks
You can read this tutorial , it's very simple
link : http://www.codeproject.com/Articles/432069/Simple-MEF-Application-for-Beginners
For inderstand interest of MEF, i suggest you to read article about PRISM WPF Development With MEF
I published article about subject, link : http://aghilasyakoub.wordpress.com/category/mef-managed-extensibility-framework/
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm looking for full C# standard interfaces list. I'm almost sure that such topic was posted somewhere on MSDN, but I can't find it. Does anyone has a reference?
im sorry but such doc does not exist...
See, msdn documentation is organized by "namespaces", so... you can see that such document would not fit anywhere... by the way, why would you want that?!? if you compile the documents of each interface in the basics dll (system, text, system.data, linq, etc...) you would have a quite large document that would cause more confusion than "de-confusion", since in diferent namespaces interfaces may have the same name...
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
any one plz tell me how to differentiate the c# and silverlight interms of utility classes,ui controls(ui rendering) and package deployment?
i need to know all these details anyone plz help me out.
The Silverlight classes offered out-of-the-box are listed on MSDN - as are the various C# class libraries.
Assuming that your question comes from wanting to know which C# classes are not available in Silverlight (quite a few as I remember)
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I'm searching for a good cache manager for generic objects.
I'm using C# with ASP.NET. I want to use System.Web.Cache. So I want a cache manager that will care about the caching and implement functions like ADD, GET, and UPDATE.
NVelocity, NCache, and the Microsoft P&P Caching block
For in-process memory caching take a look at the following:
For .NET 4: http://msdn.microsoft.com/en-us/library/dd997357(v=VS.100).aspx
For earlier versions:
http://msdn.microsoft.com/en-us/library/xsbfdd8c(v=vs.71).aspx
http://codemaverick.blogspot.com/2007/01/caching-in-windows-application-i-was_8639.html
Those can easily be used to cache objects, though the latter is mostly intended for caching ASP.net pages - if that's what you want :)
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 13 years ago.
How can I become an expert in C# and any language I learn?
Also, what are some recommended books....?
Is really easy. Learn all features of the language, then study the framework and read when to apply each feature.
A great place to start is the Head First series.
The Head First C# book is totally awesome. I learned a lot from it, and it's super easy, comprehensive (and fun!) to read. (Amazon Link)
Then just start a project on your own and apply what you learned. You will pick up faster than you think you can!
Good luck on your quest!