directcast(123.34,integer) - should it throw an error? Why
or why not?
Answers were Sorted based on User's Feedback
Answer / debasis sengupta
directcast(123.34,integer) would throw an InvalidCast
exception since it requires the runtime type of the object
variable to be same as the specified type. In this case
runtime type of 123.34 (double) doesn?t match with integer.
but for ctype(123.34,integer) - it would work fine. As the
runtime type of 123.34 would be double, and Double can be
converted to Integer.
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / debasis sengupta
directcast(123.34,integer) would throw an InvalidCast
exception as the runtime type since it requires the run-
time type of an object variable to be same as the specified
type. In this case runtime type of 123.34 (double) doesn?t
match with integer.
Is This Answer Correct ? | 1 Yes | 1 No |
Why are strings immutable c#?
What I can do with c#?
Does c# support multiple inheritance (mi)?
What do you understand by an Implicit Variable?
What is static and use of it?
What is anonymous class in c#?
What is func c#?
How do I format a string in c#?
When a switch is said to be congested?
What is difference between write and writeline?
What are destructors in C#?
1 Answers TryTechnicals Pvt Ltd,
without modifying source code if we compile again, will it be generated MSIL again?