Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Set Get
//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; using System.Globalization; using System.Threading; namespace Rextester { public class Rectancle { public int Length {get;set;} public int Height {get;set;} public void Grow(int length,int height){ Length += length; Height += height; } } public class Program { public static void Main(string[] args) { Rectancle r = new Rectancle(); r.Length = 5; r.Height = 10; r.Grow(10,10); Console.WriteLine ("Lenght Data : "+ r.Length.ToString()); Console.WriteLine ("Lenght Data : "+ r.Height.ToString()); } } }
run
|
edit
|
history
|
help
0
Multidimensional Arrays
SortedDictionary<TKey, TValue> クラス
compiled prog
Output to get sum = 5 in given array of integers
ArrayList list merge_collections
I know it's a bit combersome, but it's my first attempt.
jkb
30272 Program Ex5 if else
Task 1_4
Hi