Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Пример применения необязательных аргументов
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { static void Display(string str, int start=0, int stop=-1) { if (stop<0) stop=str.Length; if(stop>str.Length|start<0|start>stop) return; for(int i=start;i<stop;i++) Console.Write(str[i]); Console.WriteLine(); } public static void Main(string[] args) { //Your code goes here Console.WriteLine("Пример использования необязательных аргументов"); Display("Серегин Игорь Алексеевич"); Display("Серегин Игорь Алексеевич", 7); Display("Серегин Игорь Алексеевич",7,13); } } }
run
|
edit
|
history
|
help
0
Square Integer Matrix
Fibonacci of array elements C#
abababa sub string
Testing 12
Test Stopwatch
Number Comparer
75 95
Hello word
Truncate String by Byte
gd