Is it possible to return a string?
I try to get the password from a password field. But I couldnt. I try to write a method which change Char[] to a string. Here is my code:
privatestatic string SifreyiAl(char[] Chr){
String Str ="";
for(int i = 0, i < Chr.length, i++){
Str += Chr[i];
}
return Str;
}
Why doesnt it work?
Message was edited by:
Genomsaren

