PrepAway - Latest Free Exam Questions & Answers

Which code segment should you insert at line 07?

You are developing an application by using C#. The application includes the following code segment.
(Line numbers are included for reference only.)

The DoWork() method must not throw any exceptions when converting the obj object to the
IDataContainer interface or when accessing the Data property.
You need to meet the requirements. Which code segment should you insert at line 07?

PrepAway - Latest Free Exam Questions & Answers

A.
var dataContainer = (IDataContainer)obj;

B.
dynamic dataContainer = obj;

C.
var dataContainer = obj is IDataContainer;

D.
var dataContainer = obj as IDataContainer;

Explanation:
As – The as operator is like a cast operation. However, if the conversion isn’t possible, as returns null
instead of raising an exception.
http://msdn.microsoft.com/en-us/library/cscsdfbt(v=vs.110).aspx

2 Comments on “Which code segment should you insert at line 07?

  1. Seekat says:

    Explanation/Reference:
    answer A: application throws exception if can’t cast
    answer B: it isn’t really a casting so it’s wrong answer.
    in D: “as” return null if can not cast

    Answer D




    1



    0

Leave a Reply