wasCSharpSQLite – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /*
2 * ConcatCmd.java
3 *
4 * Copyright (c) 1997 Cornell University.
5 * Copyright (c) 1997 Sun Microsystems, Inc.
6 *
7 * See the file "license.terms" for information on usage and
8 * redistribution of this file, and for a DISCLAIMER OF ALL
9 * WARRANTIES.
10 *
11 * Included in SQLite3 port to C# for use in testharness only; 2008 Noah B Hart
12 *
13 * RCS @(#) $Id: ConcatCmd.java,v 1.1.1.1 1998/10/14 21:09:18 cvsadmin Exp $
14 *
15 */
16 using System;
17 namespace tcl.lang
18 {
19  
20 /// <summary> This class implements the built-in "concat" command in Tcl.</summary>
21 class ConcatCmd : Command
22 {
23  
24 /// <summary> See Tcl user documentation for details.</summary>
25 public TCL.CompletionCode cmdProc( Interp interp, TclObject[] argv )
26 {
27 interp.setResult( Util.concat( 1, argv.Length, argv ) );
28 return TCL.CompletionCode.RETURN;
29 }
30 }
31 }