Book a Demo

Author Topic: Class Attributes C#  (Read 2917 times)

jdavid

  • EA User
  • **
  • Posts: 58
  • Karma: +0/-0
    • View Profile
Class Attributes C#
« on: January 10, 2005, 07:32:41 am »
I have just started using EA and was starting to define some of our classes. Question?? How do you define an attribute of type DataSet or ArrayList.....I am using C# but in the dropdown list for type there is no ArrayList or DataSet

Eve

  • EA Administrator
  • EA Guru
  • *****
  • Posts: 8110
  • Karma: +119/-20
    • View Profile
Re: Class Attributes C#
« Reply #1 on: January 13, 2005, 02:41:55 pm »
You have a few options.

My preferred option is to create ArrayList and DataSet classes as needed in the model in a package structure corresponding to the namespace structure.

Alternatively you can just add them as C# datatypes (Configuration | Language Datatypes) or just type them into the type field instead of using the dropdown list.

Simon