You can use the following code, if you want to get file names in a directory using C#:
using System;
using System.IO;
class Program
{
static void Main()
{
string[] array1 = Directory.GetFiles(@"C:\");
// Put all txt files in root directory into array2.
string[] array2 = Directory.GetFiles(@"C:\", "*.txt");
Console.WriteLine("Files:");
foreach (string name in array1)
{
Console.WriteLine(name);
}
// Display all txt files.
Console.WriteLine("txt Files:");
foreach (string name in array2)
{
Console.WriteLine(name);
}
}
}
30 Eylül 2009 Çarşamba
Running C# on Command Prompt
using System;
class Hello {
public static void Main () {
Console.WriteLine ("Hello World");
}
}
class Hello {
public static void Main () {
Console.WriteLine ("Hello World");
}
}
Save the file as hello.cs.
Go to the necessary directory and type csc hello.cs to compile.
If compilation was successful, hello.exe is created in that directory. You can run it by typing hello to the command prompt.
That's it.
Good programming!
Etiketler:
c# command prompt,
c# visual c++ express,
compile c#
7 Eylül 2009 Pazartesi
Youtube: An error occurred, please try again later
Youtube'da video izlemek isterken, bu hatayı alıyorsanız, aşağıda belirtilenleri uygulamanız probleminizi çözecek:
Windows kullanıcıları için: Yerel ağ bağlantısı -> Özellikler -> TCP-IP > DNS ata > Üst kısma 208.67.222.222 / Alt kısma 208.67.222.220 (Kablosuz ağ kullananlar çözüm için yazının yorumlarına bakabilir.)
MacOS kullanıcıları için: System Preferences -> Network -> Advanced -> DNS -> artı işaretine basarak yeni adres ekliyoruz: 208.67.222.222 -> Apply ve OK
Artık Youtube videolarını izleyebilirsiniz.
Kaydol:
Kayıtlar (Atom)