Fan.Sys.Long.intValue C# (CSharp) Метод

intValue() публичный Метод

public intValue ( ) : int
Результат int
        public override int intValue()
        {
            return (int)val;
        }

Usage Example

Пример #1
0
 public static Stream toBuffered(Stream output, Long bufSize)
 {
     if (bufSize == null || bufSize.longValue() == 0)
     return output;
       else
     return new BufferedStream(output, bufSize.intValue());
 }
All Usage Examples Of Fan.Sys.Long::intValue