Welcome, Guest Ohm namah shivoy
www.faqpanel.com
Home | ASP.Net | C-Sharp | Winforms | MS SQL | AJAX | XML | .Net Training*** | Search
Invite friends 
Extras 
VS Tips & Tricks
Top 10 .Net Tools
Special folders in ASP.Net
VS Find Combobox
 C-Sharp (C#) Interview Questions and Answers
How to loop through a list of files in a directory?
This looks at all files ending in ".cs"

using System;
using System.IO;

public class Temp
{
public static void Main(string[] args) {
DirectoryInfo di = new DirectoryInfo(".");
foreach(FileInfo fi in di.GetFiles("*.cs")) {
Console.WriteLine("Looking at file \""+fi.FullName+"\""); }
}
}

What is the partial classes?
Can multiple catch blocks be executed for a single try statement?
What is the Interface (C#)?
How do assemblies find each other?
What is the size (in bytes) of C#.Net object?
What is the advantage of using System.Text.StringBuilder over System.String?
What is the difference between Convert.ToInt32(string) and Int32.Parse(string)?
What is thread?
How to concatenate two ArrayLists?
Why strings are called Immutable data Type?