Browse by Tags
All Tags »
.NET (
RSS)
Here are some download links to Visual Studio 2010 Beta 2 and related technologies. Visual Studio Microsoft .NET Framework 4 Beta 2 Microsoft Visual Studio 2010 Ultimate Beta 2 - ISO Microsoft Visual Studio 2010 Premium Beta 2 – ISO Microsoft Visual Studio...
In my last posting I introduced new ReadLines() method and new overloads for WriteAllLines() method of File class . But there are more new stuff in System.IO namespace . In .Net Framework 4.0 Directory and DirectoryInfo class are able to enumerate files...
.Net Framework 4.0 adds also some new and cool features to file system objects. File class has now ReadLines() methods that returns IEnumerable<string>. WriteAllLines() methods has two overload methods that accept IEnumerable<string> instead...
.Net Framework 4.0 Beta 2 has new IsNullOrWhiteSpace() method for strings generalizes IsNullOrEmpty() method to incluse also other white space besides empty string. In this posting I will show you simple example that illustrates how to use IsNullOrWhiteSpace...
.Net Framework 4.0 Beta 2 introduces new class in System.Numerics namespace: Complex . Complex represents complex numbers and enables different arithmetic operations with complex numbers. In this posting I will show you how to use complex numbers in ...
In one of my current projects I needed something that takes image uploaded by user and converts it to avatar image. There is requirement for avatar images: they must be 32x32 pixel squares. Here is my solution. Creating squared thumbnail image from what...
I needed some elegant method to read registry values in my Live Writer Delicious bookmarks plug-in . RegistryKey has GetValue() method but it returns values as object. I wrote generic version of GetValue() as RegistryKey extension method . It returns...
JQuery and web development Limit Number of Characters in a TextArea using jQuery Find out which Key was pressed using jQuery jQuery Superfish Menus Plug-in Make website images look like a video with this CSS effect CSS2 – opacity Mobile 55 per cent of...
C# 4.0 supports optional method arguments. Related to this is support for named parameters in function calls. For us it makes easier to use methods which have long argument list. It also introduces some new dangers which may lead us to messy and hard...
I am developing a little piece of software that interacts with Delicious through HTTP API. Using Delicious API puts you one responsibility – use their service carefully. Don’t flood it and don’t stress it some other way. In this posting I will show you...
More Posts
Next page »