mono fun
This commit is contained in:
parent
f6fcf9b60a
commit
a48e8d7633
1 changed files with 4 additions and 0 deletions
|
|
@ -24,7 +24,11 @@ namespace Server.Accounting
|
|||
|
||||
public static ICollection<IAccount> GetAccounts()
|
||||
{
|
||||
#if !MONO
|
||||
return m_Accounts.Values;
|
||||
#else
|
||||
return new List<IAccount>( m_Accounts.Values );
|
||||
#endif
|
||||
}
|
||||
|
||||
public static IAccount GetAccount( string username )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue