RE: C# console application executing command line commands?
- From: "Katherine Moss" <plymouthroamer285@xxxxxxxxx>
- To: <programmingblind@xxxxxxxxxxxxx>
- Date: Wed, 4 Aug 2010 22:51:13 -0400
What is the biggest drawback then?
-----Original Message-----
From: programmingblind-bounce@xxxxxxxxxxxxx
[mailto:programmingblind-bounce@xxxxxxxxxxxxx] On Behalf Of Littlefield,
Tyler
Sent: Wednesday, August 04, 2010 10:33 PM
To: programmingblind@xxxxxxxxxxxxx
Subject: Re: C# console application executing command line commands?
There aren't limitations, beyond language drawbacks and plus's.
----- Original Message -----
From: "Katherine Moss" <plymouthroamer285@xxxxxxxxx>
To: <programmingblind@xxxxxxxxxxxxx>
Sent: Wednesday, August 04, 2010 8:23 PM
Subject: RE: C# console application executing command line commands?
> That's strange since I'm learning C# right now, and most of the stuff I've
> been doing is through console applications. What are the limits to C# and
> what it can do in terms of console applications?
>
> -----Original Message-----
> From: programmingblind-bounce@xxxxxxxxxxxxx
> [mailto:programmingblind-bounce@xxxxxxxxxxxxx] On Behalf Of Jamal Mazrui
> Sent: Wednesday, August 04, 2010 10:17 PM
> To: programmingblind@xxxxxxxxxxxxx
> Cc: Jacob Kruger
> Subject: Re: C# console application executing command line commands?
>
> Are you interested in creating a console mode environment with a
> read-execute-print-loop (REPL)? Generally, this requires a dynamic
> language that includes an "Eval" function that can evaluate arbitrary
> code at runtime and display the result. C# and Visual Basic do not have
> such a feature. JScript .NET, IronPython, IronRuby, F#, Boo, and Nemerl
> -- all .NET languages -- do.
>
> Jamal
>
> On 8/4/2010 3:46 PM, Jacob Kruger wrote:
>>
>> Got that far, but apart from using
>>
>> System.Console.WriteLine to write strings to the console output, without
>> them executing, and also trying to start a System.Diagnostics.Process
>> like have done in past to launch external apps, I don't seem to be able
>> to find out how to actually execute a command, and it always finishes
>> off with something like 'Press any key' when it finishes executing.
>>
>> Stay well
>>
>>
>> Jacob Kruger
>> Blind Biker
>> Skype: BlindZA
>> '...fate had broken his body, but not his spirit...'
>>
>> ----- Original Message -----
>> *From:* Katherine Moss <mailto:plymouthroamer285@xxxxxxxxx>
>> *To:* programmingblind@xxxxxxxxxxxxx
>> <mailto:programmingblind@xxxxxxxxxxxxx>
>> *Sent:* Wednesday, August 04, 2010 8:38 PM
>> *Subject:* RE: C# console application executing command line
>> commands?
>>
>> No you're not. All you have to do is to use the Console App template
>> in VS2010 or 2008. That will set up the correct namespaces and such
>> and then just tell it what you want the program to do.
>>
>> *From:* programmingblind-bounce@xxxxxxxxxxxxx
>> <mailto:programmingblind-bounce@xxxxxxxxxxxxx>
>> [mailto:programmingblind-bounce@xxxxxxxxxxxxx] *On Behalf Of *Jacob
>> Kruger
>> *Sent:* Wednesday, August 04, 2010 1:40 PM
>> *To:* Program-l
>> *Cc:* ProgrammingBlind@xxxxxxxxxxxxx
>> *Subject:* C# console application executing command line commands?
>>
>> Ok, next silly question...
>>
>> Since have never really created command line/console applications,
>> am now just trying to figure out how to get a console application
>> created in C# to execute command line commands, and then how to get
>> it to close/exit itsself after operation?
>>
>> Idea would be to create a slightly trumped up target for something
>> like a send to shortcut that can do a bit more than your average
>> batch file.
>>
>> Have looked for simple examples, but am obviously, again, using
>> incorrect search terms or something - LOL!
>>
>> TIA
>>
>>
>> Jacob Kruger
>> Blind Biker
>> Skype: BlindZA
>> '...fate had broken his body, but not his spirit...'
>>
>>
>>
>> __________ Information from ESET NOD32 Antivirus, version of virus
>> signature database 5341 (20100804) __________
>>
>> The message was checked by ESET NOD32 Antivirus.
>>
>> http://www.eset.com
>>
>>
>> __________ Information from ESET NOD32 Antivirus, version of virus
>> signature database 5339 (20100804) __________
>>
>> The message was checked by ESET NOD32 Antivirus.
>>
>> http://www.eset.com
>>
>>
>>
>> __________ Information from ESET NOD32 Antivirus, version of virus
>> signature database 5339 (20100804) __________
>>
>> The message was checked by ESET NOD32 Antivirus.
>>
>> http://www.eset.com
>>
>>
>> __________ Information from ESET NOD32 Antivirus, version of virus
>> signature database 5341 (20100804) __________
>>
>> The message was checked by ESET NOD32 Antivirus.
>>
>> http://www.eset.com
> __________
> View the list's information and change your settings at
> http://www.freelists.org/list/programmingblind
>
>
> __________ Information from ESET NOD32 Antivirus, version of virus
> signature
> database 5341 (20100804) __________
>
> The message was checked by ESET NOD32 Antivirus.
>
> http://www.eset.com
>
>
>
> __________ Information from ESET NOD32 Antivirus, version of virus
> signature
> database 5341 (20100804) __________
>
> The message was checked by ESET NOD32 Antivirus.
>
> http://www.eset.com
>
>
> __________
> View the list's information and change your settings at
> http://www.freelists.org/list/programmingblind
>
__________
View the list's information and change your settings at
http://www.freelists.org/list/programmingblind
__________ Information from ESET NOD32 Antivirus, version of virus signature
database 5341 (20100804) __________
The message was checked by ESET NOD32 Antivirus.
http://www.eset.com
__________ Information from ESET NOD32 Antivirus, version of virus signature
database 5341 (20100804) __________
The message was checked by ESET NOD32 Antivirus.
http://www.eset.com
__________
View the list's information and change your settings at
http://www.freelists.org/list/programmingblind
Other related posts:
- » C# console application executing command line commands? - Jacob Kruger
- » Re: C# console application executing command line commands? - Martin Slack
- » RE: C# console application executing command line commands? - Katherine Moss
- » Re: C# console application executing command line commands? - Jacob Kruger
- » Re: C# console application executing command line commands? - Jacob Kruger
- » RE: C# console application executing command line commands? - Katherine Moss
- » Re: C# console application executing command line commands? - Jamal Mazrui
- » RE: C# console application executing command line commands? - Katherine Moss
- » Re: C# console application executing command line commands? - Littlefield, Tyler
- » RE: C# console application executing command line commands? - Katherine Moss
- » Re: C# console application executing command line commands? - Jacob Kruger
- » Re: C# console application executing command line commands? - black ares
- » Re: C# console application executing command line commands? - black ares
- » Re: C# console application executing command line commands? - black ares
- » RE: C# console application executing command line commands? - DaShiell, Jude T. CIV NAVAIR 1490, 1, 26
- » Re: C# console application executing command line commands? - Dave
- » RE: C# console application executing command line commands? - Katherine Moss
- » Re: C# console application executing command line commands? - Littlefield, Tyler
- » Re: C# console application executing command line commands? - Jacob Kruger
- » Re: C# console application executing command line commands? - Jacob Kruger
- » Re: C# console application executing command line commands? - Jacob Kruger
- » RE: C# console application executing command line commands? - Katherine Moss
- » Re: C# console application executing command line commands? - Littlefield, Tyler
- » RE: C# console application executing command line commands? - Øyvind Lode
- » RE: C# console application executing command line commands? - Øyvind Lode
- » RE: C# console application executing command line commands? - Katherine Moss
- » RE: C# console application executing command line commands? - Katherine Moss
- » Re: C# console application executing command line commands? - Littlefield, Tyler
- » RE: C# console application executing command line commands? - Katherine Moss
- » Re: C# console application executing command line commands? - Littlefield, Tyler
- » RE: C# console application executing command line commands? - Katherine Moss
- » Re: C# console application executing command line commands? - black ares
- » Re: C# console application executing command line commands? - Jacob Kruger
- » Re: C# console application executing command line commands? - Jacob Kruger
- » Re: C# console application executing command line commands? - Littlefield, Tyler
- » Re: C# console application executing command line commands? - Martin Slack
- » Re: C# console application executing command line commands? - Jacob Kruger
- » Re: C# console application executing command line commands? - Jacob Kruger
- » RE: C# console application executing command line commands? - DaShiell, Jude T. CIV NAVAIR 1490, 1, 26
- » Re: C# console application executing command line commands? - Jacob Kruger