Browse by Tags
All Tags
»
C#
.NET
ASP.NET
Debug
IIS
VisualStudio
19 March 2008
Object.ReferenceEquals(valueVar, valueVar) will always return false
The ReferenceEquals method is usually used to determine if two objects are the same instance. But you need to be a bit cautious when you use it with Value Types. Consider the following code. static void Main( string [] args) { int valueVar = 15; if (Object.ReferenceEquals(valueVar,
Read More...
19 December 2007
Adding Icons to your custom IIS 7.0 Manager UI Modules
There is a lot of enthusiasm around building IIS UI modules that show up in the IIS Manager. The extensibility model that IIS 7.0 ships with is great and provides a lot of opportunity for developers to come up with nifty modules. One thing that developers
Read More...
05 December 2007
Preventing ildasm from disassembling your assembly
The MSIL Disassembler (ildasm.exe) is a neat tool that can be used to view the MSIL code of a .Net assembly/dll. Many of you should have used it to peek into assemblies while debugging/troubleshooting. I use it a lot to check assembly namespaces and stuff
Read More...
15 November 2007
SOS your Visual Studio
If you as a developer are interested in taking quick peeks into memory allocation you can load SOS (Son Of Strike) in Visual Studio to do that. SOS is written as a WinDbg extension but can load in Visual Studio and do most of the stuff. To begin with
Read More...
30 November 2006
A tryst with MSIL
Any ASP.NET developer should be knowing that when his/her .NET application is compiled, the high-level code written in C# or Visual Basic .NET is compiled into the intermediate language MSIL. It is this MSIL that the Common Language Runtime (CLR) actually
Read More...
Home
About
Email
The Way I See It
Vijayshinva Karnure
RSS 2.0
Recent Posts
ASP.NET Debugger Extension – Manual Install / Uninstall
ASP.NET Debugger Extension – Trace Process for Debug Events
ASP.NET Debugger Extension – Find Debug Modules
ASP.NET Debugger Extension – Callstack Viewer
ASP.NET Debugger Extension for IIS 7
Tags
.NET
ASP.NET
C#
Debug
IIS
IIS 7 Tip
InternetExplorer
Live
PowerShell
SCCM
Security
SSRS
Tools
VisualStudio
WinDbg
Windows
Archives
November 2009 (5)
October 2009 (1)
September 2009 (2)
August 2009 (1)
July 2009 (1)
May 2009 (5)
April 2009 (4)
March 2009 (5)
February 2009 (4)
January 2009 (3)
November 2008 (1)
October 2008 (2)
September 2008 (1)
May 2008 (3)
April 2008 (3)
March 2008 (3)
February 2008 (2)
January 2008 (2)
December 2007 (3)
November 2007 (3)
October 2007 (2)
May 2007 (1)
November 2006 (2)
Search
All opinions posted here are those of the author and are in no way intended to represent those of his employer. All posts are provided "AS IS" with no warranties, and confers no rights.