C# Program to Swap two Numbers using System; namespace Program { class Program { static void Main (string [ ] args) { int num1, num2, temp ; Console . WriteLine (" Enter the First Number : " ) ; num1 = int .Parse ( Console. ReadLine( )) ; Console . WriteLine (" Enter the Second Number : " ) ; num2 = int .Parse ( Console. ReadLine( )) ; temp = num1 ; num1 = num2 ; num2 = temp ; Console . WriteLine (" After…

Channel
C#.. visual studio
@com_science_c_sharp
On this record: Growth · Engagement · Posts · Cite this entry
2,607subscribers
-24 since we began measuring on 7 August 2026
Risers and fallers across the register · movement among entries of 1,000–3,162.
Register entry
| Telegram ID | -1001128339073 |
|---|---|
| Type | Channel |
| Username | @com_science_c_sharp |
| Created | 7 September 2017 — measured — dated from the channel’s first post |
| First recorded | 7 August 2026 |
| Last confirmed live | 23 August 2026 |
| Measurements held | 7 |
| Confirmed unchanged | 1 time, most recently 23 August 2026 |
| On Telegram | t.me/com_science_c_sharp |
Growth
| Measured (UTC) | Subscribers | Change |
|---|---|---|
| 23 Aug 2026, 00:29 | 2,607 | -3 |
| 19 Aug 2026, 19:58 | 2,610 | -5 |
| 16 Aug 2026, 19:37 | 2,615 | -4 |
| 13 Aug 2026, 06:47 | 2,619 | -5 |
| 10 Aug 2026, 04:48 | 2,624 | -7 |
| 7 Aug 2026, 04:15 | 2,631 | no change |
| 7 Aug 2026, 04:06 | 2,631 | first reading |
Engagement
19 posts held, back to 7 September 2017 — the reader has reached the start of this channel’s public history, so this is the full archive Telegram still exposes. Read across 2 pagesof Telegram’s post history, 20 posts per page.
Nothing published in the last 30 days. ERR and ER are rolling 30-day measures, so there is nothing to compute — we hold 19 posts for this entry, the most recent from 21 September 2017. An engagement rate over an empty window would be a number about nothing.
Recent posts
Here is the output of the C# Program: Enter the First Number : 23 Enter the Second Number : 25 After Swapping : First Number : 25 Second Number : 23
static void SwapByRef(ref int x, ref int y) { int temp = x; x = y; y = temp; } When you call the SwapByRef method, use the ref keyword in the call, as shown in the following example. C# static void Main() { int i = 2, j = 3; System.Console.WriteLine("i = {0} j = {1}" , i, j); …
Loop output is same 12345678910
Loops
int i; for(i=1;i<=10;i++) { console. WriteLine(i); }
Int i=1; While (i<=10) { console. WriteLine(i); i++; }
Int i=1; do { console. WriteLine(i); i++; } while (i<=10)
If(a>0) { console. WriteLine("positive num"); } else { console. WriteLine("negative num"); } console. ReadKey();
Int d=2; Switch(d) { Case 1: console. WriteLine("sunday"); break; Case 2: console. WriteLine("monday"); break; Case 3: console. WriteLine("tuesday"); break; Default: console. WriteLine("not a day"); }
Control statements in c# Means branching and looping Branching includes If -else Switch-case ...... Looping includes For While Do while For each
Explain the control statements in c# with suitable example.
Showing the 12 most recent of 19 posts we hold for @com_science_c_sharp. View and reaction counts are the latest single reading for each post, not a live figure, and a recent post is still accumulating both. A view count marked ≈ was rounded by Telegram before we ever saw it — t.me prints views in full below 1,000 and to three significant figures above, so ≈1,200,000 means somewhere between 1,150,000 and 1,249,999. Unmarked counts are exact. Text is reproduced from the public post preview and truncated for length.
Cite this entry
A live page changes as we take new readings, so a citation should name the measurement it is based on, not just the URL. The line below cites the subscriber count as measured 23 August 2026 — this entry's latest reading, not the date you are reading this.
“C#.. visual studio” (@com_science_c_sharp), 2,607 subscribers as measured 23 August 2026. Telegram Register, tgregister.com/channel/com_science_c_sharp.
Full measurement history, CC BY 4.0. Every reading this register holds for this entry, not just the latest one, as a dated, downloadable record: CSV · JSON. Free to use with attribution to tgregister.com. Each file carries its own generation timestamp, which is the figure to cite for exactly when the data was retrieved.