How to Create Files by Using the FileInfo Class?
Answer / raihansazal
FileInfo fi = new FileInfo("Your file name with directory");
fi.Create();
That's all.
| Is This Answer Correct ? | 1 Yes | 1 No |
How to Link Different Data Sources Together?
How to pass multiple rows from one gridview to another gridview after clicking the checkbox.
Can you declare an array of mixed Types?
Write a program to count the number of characters, number of words, number of line in file.
How to Create Files by Using the FileInfo Class?
Write a program to count 3Letter, 4Letter and 5Letter words from a file and print the number of 3Letter, 4Letter and 5Letter words. Delimiter is space, tab, hifen. Also we should not consider the line in the file after we encounter # in that line.
Write a program which has a function and that function should take 2 or 3 or any number of strings and it should return the largest common prefix of all those strings. If there is no common prefix it should return an empty string. for eg:- INPUT OUTPUT glo {glory,glorious,glod} gl {glad,glow} {calendar,phone} empty string
program for straight line(y=mx+c)
IS Array list is generic or non generic
Event Handling in C# Triggering a Button
Give the code for Handling Mouse Events?
program to check if a number is "perfect number".