Feeds:
Posts
Comments

Archive for May, 2006

hello every body

sorry this another day when i have nothing to post

Read Full Post »

It is possible in asp.net 2 that c# an vb.net classes can be used in same project
All class files are contained in \app_Code folder which is compiled into single assembly.
It is possible that classes placed in same folder causes error. So make different folders in \app_data such as “vbclasses” and “c#classes”
    
\ App_Code              
                        [...]

Read Full Post »

Value types in dot net framework 2 have some extension that either it take value or not. This extension is called nullable types. For example if  we need int32.  we declare it as
        Dim myint as nullable(of int32)
Now myint can hold value of type int32 if we assign it other wise it contain null value   
If [...]

Read Full Post »

This has got to be one of the funniest songs I’ve heard of in awhile. The odd thing is that it speaks to me as well, has a catchy tune, and only costs $1 to buy it from the guy! Without further ado…"Code Monkey" by Jonathan Coulton.
“Code Monkey like Fritos
Code Monkey like Tab and Mountain [...]

Read Full Post »

In value type based variables holds memory on stack and hold fixed space for example integer in dot net hold 4 bytes.
In reference type based variables holds memory at managed heap. Reference type variables hold dynamic space. The space hold by reference type can be vary.

When reference is to assign to variable. Only reference is [...]

Read Full Post »