0

آموزش های مرتبط با # c

 
siryahya
siryahya
کاربر طلایی1
تاریخ عضویت : اسفند 1389 
تعداد پست ها : 158652
محل سکونت : ▂▃▄▅▆▇█Tabriz█▇▆▅▄▃▂

پاسخ به:آموزش های مرتبط با # c
سه شنبه 22 اردیبهشت 1394  1:43 AM

Add line numbers to text
public void ConvertText()
{
StringBuilder output = new StringBuilder();
 
try
{
char[] end_of_line = {(char)10};
string[] lines = this.Text.Split( end_of_line );
 
int line_count = lines.GetUpperBound(0)+1;
int linenumber_max_width = line_count.ToString().Length;
string padding = new String( ' ', this.LineNumberPaddingWidth);
 
for ( int i=0; i<line_count; i++ )
{
output.Append( this.GetFormattedLineNumber( i+1,
linenumber_max_width, padding ) );
output.Append( lines[i] );
output.Append( "\r\n" );
}
 
if ( this.ConvertTabsToSpaces )
{
string spaces = new String( ' ', this.TabToSpacesWidth);
output = output.Replace( "\t", spaces );
}
}
catch ( Exception e )
{
output.Append( e.Message );
}
 
this.Text = output.ToString();
}

 

ترکی زبان قربون صدقه رفتنه داریم که: گوزلرین گیله‌سین قاداسین آلیم که یعنی درد و بلای مردمک چشات به جونم …!.

تشکرات از این پست
دسترسی سریع به انجمن ها