Click here to Skip to main content
15,897,518 members
Home / Discussions / C#
   

C#

 
GeneralRe: Quick Q: How big is a bool value? Pin
PIEBALDconsult31-Aug-07 14:32
mvePIEBALDconsult31-Aug-07 14:32 
GeneralRe: Quick Q: How big is a bool value? Pin
Scott Dorman31-Aug-07 15:48
professionalScott Dorman31-Aug-07 15:48 
GeneralRe: Quick Q: How big is a bool value? Pin
Luc Pattyn31-Aug-07 16:02
sitebuilderLuc Pattyn31-Aug-07 16:02 
GeneralRe: Quick Q: How big is a bool value? Pin
Scott Dorman31-Aug-07 16:24
professionalScott Dorman31-Aug-07 16:24 
GeneralRe: Quick Q: How big is a bool value? Pin
Luc Pattyn1-Sep-07 0:55
sitebuilderLuc Pattyn1-Sep-07 0:55 
GeneralRe: Quick Q: How big is a bool value? Pin
PIEBALDconsult1-Sep-07 5:08
mvePIEBALDconsult1-Sep-07 5:08 
GeneralRe: Quick Q: How big is a bool value? Pin
PIEBALDconsult31-Aug-07 16:08
mvePIEBALDconsult31-Aug-07 16:08 
GeneralRe: Quick Q: How big is a bool value? Pin
Scott Dorman31-Aug-07 16:21
professionalScott Dorman31-Aug-07 16:21 
GeneralRe: Quick Q: How big is a bool value? Pin
PIEBALDconsult31-Aug-07 16:39
mvePIEBALDconsult31-Aug-07 16:39 
JokeRe: Quick Q: How big is a bool value? Pin
PIEBALDconsult31-Aug-07 14:40
mvePIEBALDconsult31-Aug-07 14:40 
QuestionCapturing Key Down Events in MenuStrip Pin
paas31-Aug-07 5:17
paas31-Aug-07 5:17 
QuestionRadioButton and CheckBox confusion... Pin
solutionsville31-Aug-07 4:44
solutionsville31-Aug-07 4:44 
AnswerRe: RadioButton and CheckBox confusion... Pin
PIEBALDconsult31-Aug-07 4:58
mvePIEBALDconsult31-Aug-07 4:58 
GeneralRe: RadioButton and CheckBox confusion... Pin
solutionsville31-Aug-07 5:23
solutionsville31-Aug-07 5:23 
GeneralRe: RadioButton and CheckBox confusion... Pin
PIEBALDconsult31-Aug-07 9:37
mvePIEBALDconsult31-Aug-07 9:37 
Questionconvert image to Byte Pin
TAREQ F ABUZUHRI31-Aug-07 4:29
TAREQ F ABUZUHRI31-Aug-07 4:29 
AnswerRe: convert image to Byte Pin
pmarfleet31-Aug-07 4:38
pmarfleet31-Aug-07 4:38 
GeneralRe: convert image to Byte Pin
TAREQ F ABUZUHRI31-Aug-07 4:40
TAREQ F ABUZUHRI31-Aug-07 4:40 
GeneralRe: convert image to Byte Pin
Steve Hansen31-Aug-07 4:41
Steve Hansen31-Aug-07 4:41 
GeneralRe: convert image to Byte Pin
leppie31-Aug-07 5:06
leppie31-Aug-07 5:06 
GeneralRe: convert image to Byte Pin
TAREQ F ABUZUHRI31-Aug-07 9:49
TAREQ F ABUZUHRI31-Aug-07 9:49 
GeneralRe: convert image to Byte Pin
Mairaaj Khan1-Sep-07 1:32
professionalMairaaj Khan1-Sep-07 1:32 
Normally, CLR (Common Language Runtime) manages garbage collections. But in certain situation there is a need to release the resources used by the object(s) as soon as possible. For this purpose, using statement can be used.
According to MSDN:
The using statement allows the programmer to specify when objects that use resources should release them. The object provided to the using statement must implement the IDisposable interface. This interface provides the Dispose method, which should release the object's resources.<br />
<br />
A using statement can be exited either when the end of the using statement is reached or if an exception is thrown and control leaves the statement block before the end of the statement.<br />

For the examples, see msdn[^]

Regards.


________________________________
Success is not something to wait for, its something to work for.

Questionerror Array Pin
TAREQ F ABUZUHRI31-Aug-07 4:26
TAREQ F ABUZUHRI31-Aug-07 4:26 
AnswerRe: error Array Pin
Steve Hansen31-Aug-07 4:42
Steve Hansen31-Aug-07 4:42 
QuestionGeneric Error While running in localhost without port Pin
MahiRaju31-Aug-07 3:49
MahiRaju31-Aug-07 3:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.