Fan.Sys.Long.intValue C# (CSharp) 메소드

intValue() 공개 메소드

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

Usage Example

예제 #1
0
파일: SysOutStream.cs 프로젝트: nomit007/f4
 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