Sunday, August 31, 2008

Running C# .NET Applications On Fedora 8 Linux

Author : digioz

http://www.programmersheaven.com/user/digioz/blog/89-Running-C-NET-Applications-On-Fedora-8-Linux/




How to show hidden file in Command Prompt.

Some time we see that the hidden file don't show.
For that reason we want to show what are the hidden file in c: drive and then delete.
But the hidden file will not show.

Show we can do a follows
1. Start ->run->cmd
2. cd c:\
3. dir
this will show all the file but not show all the hidden file. So we give a new commant

3. dir /ah

here /ah means to show all the hidden file

By using this command we , can see the hidden virus file and then delete.
But the
4. del kk3.bat
will not work so we use a new command
5. del kk3.bat /ah /f /q

Here /ah means show hidden file
/f means force the file.
/q means quit.
This will help us to delete the hidden file.

Sunday, August 24, 2008

C# Links

http://www.123aspx.com/
cSharp4Newbies.com

open exe file using c#

Do you want to execute the program:

Process.Start(@"C:\windows\notepad.exe");


using System.Diagnostics;