C2018-039: Upgrade – User Control of Format
This commit is contained in:
@@ -642,6 +642,19 @@ namespace VEPROMS.CSLA.Library
|
||||
return max;
|
||||
}
|
||||
}
|
||||
public int MaxIndexNoInherit
|
||||
{
|
||||
get
|
||||
{
|
||||
int max = base.Count;
|
||||
foreach (T tmp in this)
|
||||
{
|
||||
if (tmp.Index >= max)
|
||||
max = ((int)tmp.Index) + 1;
|
||||
}
|
||||
return max;
|
||||
}
|
||||
}
|
||||
#region ICustomTypeDescriptor
|
||||
public String GetClassName()
|
||||
{ return TypeDescriptor.GetClassName(this, true); }
|
||||
|
Reference in New Issue
Block a user