diff options
Diffstat (limited to 'lang/csharp/src/SequenceStats.cs')
-rw-r--r-- | lang/csharp/src/SequenceStats.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/csharp/src/SequenceStats.cs b/lang/csharp/src/SequenceStats.cs index 3d513c41..163cacc2 100644 --- a/lang/csharp/src/SequenceStats.cs +++ b/lang/csharp/src/SequenceStats.cs @@ -1,7 +1,7 @@ /*- * See the file LICENSE for redistribution information. * - * Copyright (c) 2009, 2012 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2009, 2015 Oracle and/or its affiliates. All rights reserved. * */ using System; @@ -21,7 +21,7 @@ namespace BerkeleyDB { /// <summary> /// Cache size. /// </summary> - public int CacheSize { get { return st.st_cache_size; } } + public uint CacheSize { get { return st.st_cache_size; } } /// <summary> /// Current cached value. /// </summary> @@ -55,4 +55,4 @@ namespace BerkeleyDB { /// </summary> public long StoredValue { get { return st.st_current; } } } -}
\ No newline at end of file +} |