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
krishna angirekula
NA
68
29.7k
pass the string parameter in method ...
Feb 21 2014 12:26 AM
public string random1()
{
string fn = txtfname.Text;
string ln = txtlname.Text;
string strPwd = "";
Random rnd = new Random();
for (int i = 0; i <= 1; i++)
{
int iRandom = rnd.Next(0, fn.Length - 1);
strPwd += fn.Substring(iRandom, 1);
}
return strPwd;
i want pass 4 arguments in that method
Reply
Answers (
3
)
unnsafe mode
Webconfiguration