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 |
IS Array list is generic or non generic
how to get the table names via c sharp and column names also?
Event Handling in C# Triggering a Button
How to use ASP.NET 2.0's TreeView to Display Hierarchical Data?
Create a class called Accounts which has data members like ACCOUNT no, Customer name, Account type, Transaction type (d/w), amount, balance D->Deposit W->Withdrawal If transaction type is deposit call the credit(int amount) and update balance in this method. If transaction type is withdraw call debit(int amt) and update balance. Pass the other information like Account no,name,Account Type through constructor. Call the show data method to display the values.
Code for Reading and writing from a file in c#?
c# coding for a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors not using the Big-integer and Exponential Function's.
how do i copy textbox contents of 1 form to another form
Write a program. there are 1..n numbers placed in an array in random fashion with one integer missing. find the missing number.
program for straight line(y=mx+c)
Code for Working with Files under a Directory?
Give the code for Handling Mouse Events?