[Mono-list] templates for Public Fields

Nick Drochak ndrochak@gol.com
Sun, 21 Apr 2002 10:41:01 +0900


| no - fields are instance variables. Simply use:
| 
| public const int DefaultItemHeight;
| 

Since this is a const, maybe this should be marked with a ToDo until it
is initialized with the correct value.  Will it even compile without
_some_ value?  For example:

[MonoTODO("Initialize with correct value")]
public const int DefaultItemHeight;


Nick D.