logo search
CSharp_Prog_Guide

Результат

CoOrds: 10,15

Example 2

Description

The following example shows that you can also develop partial structs and interfaces.

Code

partial interface ITest

{

void Interface_Test();

}

partial interface ITest

{

void Interface_Test2();

}

partial struct S1

{

void Struct_Test() { }

}

partial struct S1

{

void Struct_Test2() { }

}