View Single Post
ישן 13-11-07, 08:06   # 3
Meir
חבר מתקדם
 
מיני פרופיל
תאריך הצטרפות: Dec 2006
גיל: 34
הודעות: 383

Meir לא מחובר  

Substring, דוגמא לשימוש:

קוד:
string text = "text text text";
Console.WriteLine(text.Substring(0, 7)); // print: text te
  Reply With Quote