Sign in
I know the answer (it's 42)
A blog on coding, .NET, .NET Compact Framework and life in general....
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
Amazing India
Arduino
C# / .NET / Coding
DIY
Everything else
Fun
Garbage Collection
Mango
MIX11
NETCF
Pages
Ruby
Silverlight
Software
Team System
Tech
Technology
User interface
Windows Phone
WP7
WP8
WPDT
Browse by Tags
MSDN Blogs
>
I know the answer (it's 42)
>
All Tags
>
netcf
Tagged Content List
Blog Post:
Windows Phone 8: Evolution of the Runtime and Application Compatibility
Abhinaba Basu [MSFT]
Long time back at the wake of the release of Windows Phone 7 (WP7) I posted about the Windows Phone 7 series programming model . I also published how .NET Compact framework powered the applications on WP7. Further simplifying the block diagram, we can think of the entire WP7 application system as follows...
on
8 Nov 2012
Blog Post:
Test Driven Development of a Generational Garbage Collection
Abhinaba Basu [MSFT]
These days everyone is talking about being agile and test driven development (TDD). I wanted to share a success story of TDD that we employed for developing Generational Garbage Collector (GC) for Windows Phone Mango. The .NET runtime on Windows Phone 7 shipped with a mark-sweep-compact ; stop the world...
on
15 Oct 2012
Blog Post:
WP7: CLR Managed Object overhead
Abhinaba Basu [MSFT]
A reader contacted me over this blog to inquire about the overhead of managed objects on the Windows Phone. which means that when you use an object of size X the runtime actually uses (X + dx) where dx is the overhead of CLR’s book keeping. dx is generally fixed and hence if x is small and there...
on
2 Feb 2012
Blog Post:
Windows Phone Mango: Under the hood of Fast Application Switch
Abhinaba Basu [MSFT]
Fast Application Switch of FAS is kind of tricky for application developers to handle. There are a ton of documentation around how the developers need to handle the various FAS related events. I really liked the video http://channel9.msdn.com/Events/DevDays/DevDays-2011-Netherlands/Devdays059 which walks...
on
24 Oct 2011
Blog Post:
WP7 Mango: The new Generational GC
Abhinaba Basu [MSFT]
In my previous post “ Mark-Sweep collection and how does a Generational GC help ” I discussed how a generational Garbage Collector (GC) works and how it helps in reducing collection latencies which show up as long load times (startup as well as other load situations like game level load) and gameplay...
on
14 Jun 2011
Blog Post:
WP7 Mango: Mark-Sweep collection and how does a Generational GC help
Abhinaba Basu [MSFT]
About a month back we announced that in the next release of Windows Phone 7 (codenamed Mango) we will ship a new garbage collector in the CLR. This garbage collector (GC) is a generational garbage collector. This post is a “ back to basics ” post where I’ll try to examine how a mark-sweep GC works and...
on
8 Jun 2011
Blog Post:
SIMD/ARM-NEON support in Windows Phone Mango
Abhinaba Basu [MSFT]
This is an announcement only post, do subscribe to this blog feed or on to http://twitter.com/abhinaba as I’d be making more detailed posts on these topics as we get close to handing over these bits to our developer customers. ARM processors support SIMD (Single Instructions Multiple Data) instructions...
on
10 Apr 2011
Blog Post:
WP7: When does GC Consider a Local Variable as Garbage
Abhinaba Basu [MSFT]
Consider the following code that I received: static void Foo() { TestClass t = new TestClass(); List<object>l = new List<object>(); l.Add(t); // Last use of l and t WeakReference w = new WeakReference(t); GC.Collect(); GC.WaitForPendingFinalizers(); Console.WriteLine...
on
4 Jan 2011
Blog Post:
Windows Phone 7, my story
Abhinaba Basu [MSFT]
Now that Windows Phone 7 is released all the gadget/tech blogs like TechCrunch, Engadget , Gixmodo are humming with reviews. Given that it’s a Version 1 product (ignore that 7 in the phone name) the reviews are great. Seeing all the buzz around gets me thinking about how I got involved in the project...
on
20 Oct 2010
Blog Post:
We Believe in Sharing
Abhinaba Basu [MSFT]
In Building NETCF for Windows Phone 7 series we put in couple of features to enhance startup performance and ensure that the working set remains small. One of these features added is code/data sharing. Native applications have inherent sharing where multiple processes can share the same executable code...
on
28 Apr 2010
Page 1 of 1 (10 items)