Click here to Skip to main content
16,010,394 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionRe: DLL Problem Pin
Tauseef A19-Nov-06 0:07
Tauseef A19-Nov-06 0:07 
AnswerRe: DLL Problem Pin
coolestCoder19-Nov-06 0:52
coolestCoder19-Nov-06 0:52 
QuestionRe: DLL Problem Pin
Tauseef A19-Nov-06 5:28
Tauseef A19-Nov-06 5:28 
Questioncan any body tell me difference Pin
Tauseef A18-Nov-06 5:29
Tauseef A18-Nov-06 5:29 
AnswerRe: can any body tell me difference Pin
WillemM18-Nov-06 7:49
WillemM18-Nov-06 7:49 
GeneralRe: can any body tell me difference Pin
Guffa18-Nov-06 11:11
Guffa18-Nov-06 11:11 
GeneralRe: can any body tell me difference Pin
WillemM19-Nov-06 0:12
WillemM19-Nov-06 0:12 
AnswerRe: can any body tell me difference Pin
Guffa18-Nov-06 11:27
Guffa18-Nov-06 11:27 
ghumman63 wrote:
difference between (int) data type and Int32 data type ,, what is the usage for both types


There is no difference at all. The int data type is just an alias for the System.Int32 data type.

ghumman63 wrote:
Uint16 Ctime = 20;
Uint16 b =Convert.ToUInt16(Ctime - 1);
Uint16 b =(Uint16)Ctime - 1;// this code does not work but why what is the difference between these two approaches


The difference is that on the third line you are only casting the value of Ctime, the 1 value is still an int. If you want to cast the value after the calculation, you have to put parentheses around it:

Uint16 b =(Uint16)(Ctime - 1);


---
b { font-weight: normal; }

GeneralRe: can any body tell me difference Pin
Tauseef A18-Nov-06 21:41
Tauseef A18-Nov-06 21:41 
QuestionIs thre any strongest secure way ? Pin
Tauseef A18-Nov-06 0:37
Tauseef A18-Nov-06 0:37 
AnswerRe: Is thre any strongest secure way ? Pin
Paul Conrad18-Nov-06 4:02
professionalPaul Conrad18-Nov-06 4:02 
AnswerRe: Is thre any strongest secure way ? Pin
Desert Star23-Nov-06 21:10
Desert Star23-Nov-06 21:10 
QuestionCustom Controls handling Design Time Events Pin
steve.borman17-Nov-06 8:44
steve.borman17-Nov-06 8:44 
AnswerRe: Custom Controls handling Design Time Events Pin
Thomas Stockwell18-Nov-06 6:20
professionalThomas Stockwell18-Nov-06 6:20 
QuestionQuery related to Framework 1.1 Pin
sharmankit17-Nov-06 8:02
sharmankit17-Nov-06 8:02 
AnswerRe: Query related to Framework 1.1 Pin
Karthik Kalyanasundaram17-Nov-06 14:55
Karthik Kalyanasundaram17-Nov-06 14:55 
AnswerRe: Query related to Framework 1.1 Pin
WillemM18-Nov-06 7:47
WillemM18-Nov-06 7:47 
Questionto clear the find combobox list in microsoft .net 2003 Pin
zareee16-Nov-06 21:22
zareee16-Nov-06 21:22 
AnswerRe: to clear the find combobox list in microsoft .net 2003 Pin
Thomas Stockwell18-Nov-06 6:31
professionalThomas Stockwell18-Nov-06 6:31 
QuestionDataGridView In Form Designer Pin
junxian_chen16-Nov-06 14:39
junxian_chen16-Nov-06 14:39 
AnswerRe: DataGridView In Form Designer Pin
Tal Kain16-Nov-06 15:26
Tal Kain16-Nov-06 15:26 
QuestionGet Info From Windows Service Pin
Owen West16-Nov-06 12:06
Owen West16-Nov-06 12:06 
GeneralRe: Get Info From Windows Service [modified] Pin
George L. Jackson16-Nov-06 16:16
George L. Jackson16-Nov-06 16:16 
AnswerRe: Get Info From Windows Service Pin
Scott Dorman17-Nov-06 6:10
professionalScott Dorman17-Nov-06 6:10 
QuestionUnderstanding .NET Programmability & MSWord Pin
Andrew Mercer16-Nov-06 6:32
Andrew Mercer16-Nov-06 6:32 

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.