070-483J Free Dumps Study Materials
Question 12: あなたは、以下のコード部分を含むアプリケーションを開発しています:
あなたは、派生クラスの名前UseResourcesに各インタフェースのopen()メソッドを実装
し、各インタフェースのopen()メソッドを呼び出す必要があります。
あなたは、どの二つコード部分を使わなければなりませんか?(各正解は、ソリューション
の一部を紹介します。2を選択してください。)
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: A C
Explanation
* An interface contains only the signatures of methods, properties, events or indexers. A
class or struct that implements the interface must implement the members of the interface
that are specified in the interface definition.
* Example:
interface ISampleInterface
{
void SampleMethod();
}
class ImplementationClass : ISampleInterface
{
// Explicit interface member implementation:
void ISampleInterface.SampleMethod()
{
// Method implementation.
}
static void Main()
{
// Declare an interface instance.
ISampleInterface obj = new ImplementationClass();
// Call the member.
obj.SampleMethod();
}
}