Microsoft AX 2012, X++, C#, SQL server, SSRS, Java, JavaFX, Oracle, PL/SQL, Delphi - codes examples, step-by-step tutorials, experiences.
string s = "This is a text"; MessageBox.Show( s.Substring( s.Length - 6 ) );
string s = "This is a text"; MessageBox.Show( new string( s.TakeLast(6).ToArray() ) );
No comments:
Post a Comment