Scalien.Users.CountUsers C# (CSharp) Method

CountUsers() public method

public CountUsers ( ) : long
return long
        public long CountUsers()
        {
            return (long)table.Count(new ByteRangeParams());
        }

Usage Example

Beispiel #1
0
        public void CountUsers()
        {
            Users usr = new Users(Utils.GetConfigNodes());

            long cnt = usr.CountUsers();

            Console.WriteLine("Count is " + cnt);
        }
All Usage Examples Of Scalien.Users::CountUsers