views:

104

answers:

1

What is the difference between the 2 ? some examples would be great! thnx

A: 

There is no System.Drawing.Bitmap in Silverlight.

If you are asking for a comparison between this in the .NET framework and WritableBitmap in Silverlight then the differences are huge. The WritableBitmap is a simple representation of a bitmap with very few constructors or means of manipulation. Most of what you can do with Bitmap you would need to implement yourself via the Pixels array.

AnthonyWJones