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 |
Write a program to convert postfix expression to infix expression.
How to add a value from textBox over an existing certain column in SQL Server
"c sharp" code for factorial using static variables
Write a function which accepts list of nouns as input parameter and return the same list in the plural form. Conditions: i) if last letter is r then append s ii) if word ends with y then replace it by ies iii) call this function in main() and produce the required output. for eg:- if chair is input it should give chairs as output.
program to reverse the order of words in a string.
Coding for Manipulate XML File Data Using C#?
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 addition of fraction(M/N + P/Q = Y/Z)
I am developing a web application using google map api.I want to update the map inside the div control within update panel. I got other controls updated but map doesn't get updated.I do not not want to update map whenever unnecessary controls are fired at server side.How could it be achieved?
Write a function which accepts a sentence as input parameter.Each word in that sentence is to be reversed. Space should be there between each words.Return the sentence with reversed words to main function and produce the required output. for eg:- i/p: jack jill jung kill o/p: kcaj llij gnuj llik
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.
program to reverse the order of digits in a given number of any length.