Originally posted by sasguru
View Post
- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Monday's fascinating C# quiz
Collapse
X
-
merely at clientco for the entertainment -
Quiz Part II
If
Code:static Func<int> Wibble() { int myValue = 0; return () => myValue++; } static void Main() { Func<int> wibble= Wibble(); Console.WriteLine (wibble()); // Prints 0 Console.WriteLine (wibble()); // Prints 1 }
Code:static Func<int> Wibble() { return() => { int myValue= 0; return myValue++; }; } static void Main() { Func<int> wibble= Wibble(); Console.WriteLine (wibble()); // Prints? Console.WriteLine (wibble()); // Prints?
Comment
-
Originally posted by eek View PostIt's thanks to the degree I did do, that I know how much of a cretin you really are.
You'd better hope that little business you've got succeeds, because there's no way you're getting to the top otherwise.
Feck me what has the country done to its education system, that it churns out such imbeciles ?Hard Brexit now!
#prayfornodealComment
-
Originally posted by DimPrawn View PostIf
Code:static Func<int> Wibble() { int myValue = 0; return () => myValue++; } static void Main() { Func<int> wibble= Wibble(); Console.WriteLine (wibble()); // Prints 0 Console.WriteLine (wibble()); // Prints 1 }
Code:static Func<int> Wibble() { return() => { int myValue= 0; return myValue++; }; } static void Main() { Func<int> wibble= Wibble(); Console.WriteLine (wibble()); // Prints? Console.WriteLine (wibble()); // Prints?
2Knock first as I might be balancing my chakras.Comment
-
Originally posted by suityou01 View Post1
2
You clearly don't undertand closures and capturing.Comment
-
Originally posted by DimPrawn View PostNope.
You clearly don't undertand closures and capturing.Knock first as I might be balancing my chakras.Comment
-
On reflection, the method takes no arguments, and declares the variable each time setting it to zero so your first example looks wrong to me as how can it ever return anything other than 1?
Just sayin like.Knock first as I might be balancing my chakras.Comment
-
Originally posted by suityou01 View PostYep, that's fair. I'm baffled by Lambda expressions as well.
Comment
-
Originally posted by suityou01 View PostOn reflection, the method takes no arguments, and declares the variable each time setting it to zero so your first example looks wrong to me as how can it ever return anything other than 1?
Just sayin like.
PS. It's also clear you don't know the difference between ++X and X++Comment
-
Originally posted by DimPrawn View PostAs I said, closures and capturing.
Knock first as I might be balancing my chakras.Comment
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- Can a WhatsApp message really be a contract? Yesterday 20:17
- ‘Subdued’ IT contractor jobs market took third tumble in a row in August Yesterday 08:07
- Are CVs medieval or just being misused? Sep 24 05:05
- Are CVs medieval or just being misused? Sep 23 21:05
- IR35: Mutuality Of Obligations — updated for 2025/26 Sep 23 05:22
- Only proactive IT contractors can survive recruitment firm closures Sep 22 07:32
- How should a creditors’ meeting ideally pan out for unpaid suppliers? Sep 19 07:16
- How should a creditors’ meeting ideally pan out for unpaid suppliers? Sep 18 21:16
- IR35: Substitution — updated for 2025/26 Sep 18 05:45
- Payment request to bust recruitment agency — free template Sep 16 21:04
Comment