Give An example of a ctype and directcast.
Answers were Sorted based on User's Feedback
Answer / sajid
Dim t As String = "5"
Dim s As Integer = CType(t, Integer)
Dim t As String = "5"
Dim w As String = DirectCast(t, String)
| Is This Answer Correct ? | 19 Yes | 3 No |
textbox = CType(obj, TextBox)
textbox = DirectCast(obj, TextBox)
| Is This Answer Correct ? | 15 Yes | 8 No |
What’s different between process and application in .net?
Difference between machine.config and web.config?
What are the advantages of .net?
Please explain what is heap and what is stack?
what is the default value of CHAR type?in C# using asp.net?
What is marshling?
Define marshling?
What is Garbage Collection in .Net and what is the Garbage collection process?
Will my .net app run on 64-bit windows?
What is a manifest in .net?
what is viewstate?
Explain what does managed mean in the .net context?