Sebastian Wojciechowski’s WebLog

.NET Developer

Archive for March, 2005

“Microsoft drops C#”

I was browsing the Internet and found this entry in Hannes Preishuber’s blog.
It’s pretty old news but it’s fun to read what do you think about it?
Check it out here

Read Full Post »

Spice Up Your UI

Introduction
(…)
Internet Explorer contains many little-known and hidden features that, given the right circumstances, you can use to your advantage when developing Web sites. Because many of these features are specific to Internet Explorer, and are not available on any other browser, you should probably only consider using them when you are developing in an environment […]

Read Full Post »

Convert.ToString() or Int32.ToString()?

Have you ever wondered if there is a performance difference between Convert.ToString() or Int32.ToString()? Yeah, me too.
Here is the answer.

Read Full Post »

Web Services Interoperability

When I created my first public Web service, results were returned as a DataSet.
It was OK for me, because I was receiving information with a client written in .NET. But since then I felt that something was wrong. Yes, I had to change returned results type from DataSet to array of objects. So I did […]

Read Full Post »