Define interface for an array

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an interface which is going to set up the definition of 3 dimensional
array which will contain something like :

Name of variable e.g "txtName", Type of variable e.g "String or Int",
Content e.g "C:\\myfile.txt" or "1".

I need to create a class with the appropriate definition but am a wee bit
confused about interfaces.

Any ideas gurus ?
 
Have you already created the interface? If so, then declare the class
like this:

public class MyClass : InterfaceName
{
}
 
Back
Top