Browse by Tags
All Tags »
.NET CF (
RSS)
Data structures in C# via Edgar Sánchez's .NET Blog Bit by bit, C# is finding its way in the academic environment, I just found out a C# version of Bruno Preiss "Data Structures and Algorithms with Object-Oriented Design Patterns". The book is available...
Having had my own struggles with DateTime parsing, I completely concur with the comments from my peers as they replied to Brad Abrams and the BCL team on the past, present, and future of DateTime processing in the .NET Framework. The current situation...
I constantly see people write code like this for formatting numbers as strings, and wonder why: int testNumber = 12345; string myString = testNumber.ToString(); for ( int i=0; i< 8 - myString.Length; i++) { myString = "0" + myString; } Especially when...
Just stumbled across “ Minimo “ a port of the Mozilla browser for the PocketPC on MobileSlash : Minimo v0.1 is the "first" public preview release of a small device browser. We have tested this release on Familiar 0.7.2 unstable running GPE...
I just posted an update to the utility to fix a bug that left the /bin folder empty after a build. Thanks for the quick feedback!
Have you ever wanted to build a project or solution without opening up Visual Studio.NET?
There are plenty of command-line utilities (including “devenv.exe /build“) to do this, but I couldnt find anything that worked from within Windows Explorer.
...
Microsoft has finally re-released SP2 for .NET CF! Both the Developer Redistributable and the End-User Redistributable are now available.
I'm a newbie to many of the established OO patterns, but am trying to learn. Many months ago, I joined the GDN Workspace for the MS User Interface Application Block . This application block employs Model-View-Controller(MVC) style pattern that intrigued...
Having spent years developing with Visual Basic I am starting to realize that with the switch to C# and .NET, Exception handling is one core skill I still havent mastered. As a VB programmer I was always a bit anal about proper structure, defensive error...
Here is something I have been needing: MS sample of how to create a DateTime Picker for the .NET CF
More Posts
Next page »