sorry this another day when i have nothing to post
Archive for May, 2006
hello every body
Posted in Favorites on May 22, 2006 | Leave a Comment »
c# and vb classes can be used in same asp.net 2 application
Posted in asp.net 2 on May 19, 2006 | 1 Comment »
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
[...]
nullable types in .net framework 2
Posted in .net framework 2, Favorites on May 19, 2006 | Leave a Comment »
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 [...]
Code Monkey Like Fritos
Posted in Favorites on May 18, 2006 | Leave a Comment »
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 [...]
some thing about value and reference type
Posted in asp.net 2 on May 17, 2006 | Leave a Comment »
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 [...]