Posts Tagged Interfata
How to: Implement Interfaces in VB.NET
Posted by marius.popa in Uncategorized on March 23, 2010
Implementing an interface in VB.NET is done by specification Implements. Interfaces can be implemented by classes [...] and structures [...]. A class or structure can implement one or more interfaces, separated by the operator , in VB.NET.
List of interfaces implemented by class/structure is given by their associated names at defining time [...].
Read the rest of this entry »
How to: Define Interfaces in VB.NET
Posted by marius.popa in VB.NET on March 23, 2010
The interface is a set of definitions of properties, methods and events. Unlike classes [...], interfaces do not contain the implementation. Interfaces are implemented [...] by classes, but are defined as separate entities.
A class that implement an interface must implement all elements defined in that interface.
Read the rest of this entry »
Implementarea interfetelor in VB.NET
Posted by marius.popa in VB.NET on June 16, 2009
Implementarea unei interfete in limbajul VB.NET se realizeaza prin cuvantul rezervat Implements. Interfetele pot fi implementate de catre clase de obiecte [...] si structuri [...]. O clasa de obiecte sau o structura pot implementa una sau mai multe interfete, separate prin operatorul , in VB.NET.
Lista de interfete implementate de clasa de obiecte/structura este data prin denumirile asociate acestora la definire [...].
Read the rest of this entry »
Definirea interfetelor in VB.NET
Posted by marius.popa in VB.NET on June 16, 2009
Interfata reprezinta o multime de definitii privind proprietati, metode si evenimente. Spre deosebire de clasele de obiecte [...], interfetele nu contin partea de implementare. Interfetele sunt implementate [...] de catre clasele de obiecte, dar se definesc ca entitati separate de acestea.
O clasa de obiecte care implementeaza o interfata trebuie sa implementeze toate elementele definite in acea interfata.
Read the rest of this entry »

in romanian
in english