TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Nick Halterman
NA
1
666
c# code shorten up
Jun 8 2015 10:58 AM
How can I shorten this up and make it more efficient but work the same way?
Console.Clear ();
player.SpeakAsync("The date and time is currently " + dateAndTime + "Sir");
string dt = ("The date and time is currently " + dateAndTime + ", Sir.");
foreach (char c in dt)
{
Console.Write(c);
Thread.Sleep(50);
}
Thread.Sleep(wait);
Reply
Answers (
1
)
C# code to read text file and store it in database.
copy captcha