Examlex

Solved

Consider the Following Code Segment

question 9

Multiple Choice

Consider the following code segment:
{
Var exampleObject = new ExampleClass() ;
Try
{
ExampleObject.SomeMethod() ;
}
Finally
{
If (exampleObject != null)
{
ExampleObject.Dispose() ;
}
}
}
Which of the following using statements is equivalent to the preceding code segment


Definitions:

Related Questions