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
- Reports of umbrella companies’ death are greatly exaggerated Nov 28 10:11
- A new hiring fraud hinges on a limited company, a passport and ‘Ade’ Nov 27 09:21
- Is an unpaid umbrella company required to pay contractors? Nov 26 09:28
- The truth of umbrella company regulation is being misconstrued Nov 25 09:23
- Labour’s plan to regulate umbrella companies: a closer look Nov 21 09:24
- When HMRC misses an FTT deadline but still wins another CJRS case Nov 20 09:20
- How 15% employer NICs will sting the umbrella company market Nov 19 09:16
- Contracting Awards 2024 hails 19 firms as best of the best Nov 18 09:13
- How to answer at interview, ‘What’s your greatest weakness?’ Nov 14 09:59
- Business Asset Disposal Relief changes in April 2025: Q&A Nov 13 09:37
Comment