Gunnar Peipman's ASP.NET blog

ASP.NET, C#, SharePoint, SQL Server and general software development topics.

Sponsors

News

 
 
 
 
 
Programming Blogs - Blog Catalog Blog Directory
 
 
 

Links

Social

Browse by Tags

All Tags » .NET (RSS)
Visual Studio 2010 Beta 2 downloads
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...
.Net Framework 4.0: Enumerating file system objects
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...
Posted: Oct 27 2009, 12:14 PM by DigiMortal | with 14 comment(s)
Filed under: ,
.Net Framework 4.0: System.IO.File supports now IEnumerable<string>
.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...
Posted: Oct 26 2009, 05:05 AM by DigiMortal | with 15 comment(s)
Filed under: , ,
.Net Framework 4.0: string.IsNullOrWhiteSpace() method
.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...
Posted: Oct 25 2009, 11:14 AM by DigiMortal | with 22 comment(s)
Filed under: ,
.Net Framework 4.0: Complex numbers
.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 ...
Posted: Oct 23 2009, 11:20 AM by DigiMortal | with 20 comment(s)
Filed under: ,
Creating squared avatar images
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...
Posted: Sep 16 2009, 02:28 PM by DigiMortal | with 8 comment(s)
Filed under: ,
GetValue<T>() extension method for RegistryKey class
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...
Posted: Aug 20 2009, 01:37 PM by DigiMortal | with 9 comment(s)
Filed under: ,
Links 2009-08-19
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...
.Net Framework 4.0: C# and optional arguments and named parameters
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...
Posted: Aug 19 2009, 02:11 AM by DigiMortal | with 9 comment(s)
Filed under: ,
Developing Delicious applications
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 »