Fan.Sys.Long.intValue C# (CSharp) Method

intValue() public method

public intValue ( ) : int
return int
        public override int intValue()
        {
            return (int)val;
        }

Usage Example

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