bigloo.binary_port.close C# (CSharp) Method

close() public method

public close ( ) : binary_port
return binary_port
        public binary_port close()
        {
            stream.Close();
            return this;
        }

Usage Example

示例#1
0
 public static Object close_binary_port( binary_port p )
 {
     return p.close();
 }