SlideShare a Scribd company logo
1 of 21
New C#3 Features (LINQ) – Part II 
Nico Ludwig (@ersatzteilchen)
2 
TOC 
● New C#3 Features (LINQ) – Part II 
– Implicit Typing 
– Lambda Expressions 
– Extension Methods 
● Sources: 
– Jon Skeet, CSharp in Depth 
– Bill Wagner, Effective C# 
– Bill Wagner, More Effective C#
3 
Local Type Inference Examples 
<TypeInferenceExamples> 
Presents local type inference.
4 
Implicit Typing of local Variables 
// Initialization of a local 
// variable in C#1/C#2: 
string someData = "a string"; 
● Explicit typing of local variables is no longer required! 
// New in C#3: declare someData as 
// implicitly typed local variable: 
var someData = "a string"; 
– Explicit type names can be replaced by the contextual keyword var on initializations. 
● But implicitly typed variables are still statically and strongly typed! 
– They are statically and immutably typed after initialization. 
– Their static type is inferred by the compiler, it analyzes the initializer expression. 
– Only the interface of the static type can be used on them. 
– So they do not function like the type "Variant" in COM or VB 6 or var in JavaScript! 
– (Implicitly typed constants are not available.)
5 
Details about implicit Typing 
● The initializer expression needs not to be a constant or literal. 
– In C#3 there exist situations, in which the static type is unknown or anonymous. 
– These anonymous types are an important feature of LINQ in C#3! 
● The compiler is not able to infer all types. 
– It must be an initialization expression (inferred is the type of the expression right from =). 
– It must be only one variable being declared. 
– The compiler cannot infer the type of anonymous functions or method groups (as they are typeless expressions). 
– The initializer must not be a null literal w/o cast (also a typeless expression). 
● Type inference to constant symbols (a syntax like const instead of var i.e. "const inference"), is not supported. 
– (It wouldn't be very useful, because C# only allows compile time constants of primitive types.) 
● Problems with the var keyword in practical usage: 
– It can make code more difficult to read; declaration and usage should be near. 
– Its usability is much depending on the code editor's quality (e.g. IntelliSense).
6 
Pros and Cons of implicit Typing 
● Pros 
– The compiler can often infer the most efficient type (esp. for LINQ results). 
– Implicitly typed variables must be initialized, which may reduce coding errors. 
– It can improve readability, when the inferred type is obvious. 
– Less "using-namespace-directives" are needed. 
– Code can be easier modified. 
● Cons 
– Can be misunderstood by VB/COM/JavaScript developers. (No duck typing here!) 
– If the right hand side expression is complex, developers can't infer the type ;). 
– There are situations, when you are simply forced to use them. 
– Sometimes inference is the best solution, but it is not obvious why this the case. 
● When in doubt mind that code is more often read than written!
7 
Lambda Expressions first Example 
<LambdaExpressionExamples> 
Shows how lambda expressions can express Delegate 
instances.
8 
Lambda Expressions as anonymous Functions 
// Classical usage of an anonymous 
// method to instantiate a Delegate: 
Predicate<int> isEven = delegate(int i) 
{ 
return 0 == (i % 2); 
}; 
// New in C#3: usage of a lambda 
// expression to instantiate a Delegate: 
Predicate<int> isEven = i => 0 == (i % 2); 
● Lambda expressions (lambdas) are an evolution of anonymous methods. 
– Anonymous methods and lambdas can be generalized to anonymous functions. 
– (Both allow to pass code as argument to another method.) 
– You can use expression lambdas and statement lambdas. 
– (Anonymous iterator blocks are not supported.) 
– You can generate expression trees from lambdas. 
– As a block of code lambdas can be debugged! 
– During run time the "names" of these anonymous functions are obfuscated to unspeakable compiler-generated symbols.
9 
Lambdas in everyday Usage 
<LambdaExpressionExamples> 
Shows some everyday usage examples of lambda expressions.
10 
Lambdas as Delegate Instances for everyday usage 
● Whenever anonymous methods have been used, lambdas can be used now. 
– The compiler converts lambdas to Delegate types by type inference respectively. 
– So the utility methods on Collections (e.g. FindAll()) can deal with lambdas as well. 
– Functions can have other functions as parameter or result => higher-order functions. 
– The types Predicate<T>/Action/<T> and the new type Func<T, R> can be used. 
● Lambdas can also be used for event handler code. 
● If lambdas refer local or other variables, these variables are getting captured. 
– (I.e. lambdas lexically bind the enclosing scope's locals and the this reference.) 
– Captured variables can be modified within the capturing lambda! 
– The lifetime of captured locals is extended! Captured references can't be garbage collected (gc'd), as long as the Delegate 
instance (backing the lambda) wasn't gc'd! 
● Partial application and currying are not directly supported but can be simulated.
11 
Expression Tree Example 
<LambdaExpressionExamples> 
Shows the basic usage of expression trees.
12 
Lambda Expressions for Expression Trees 
● Expression trees allow to treat code as analyzable and synthesizable data. 
– It's not as hidden as IL code. 
– This is a way of meta programming. 
● .Net 3.5 has a built-in support to compile lambdas into expression trees. 
– Mind to use the namespace System.Linq.Expressions! 
● This is the cornerstone of LINQ to SQL to handle code as a tree of objects. 
– 1. Lambdas are parsed to expression trees. 
– 2. Query providers try to translate the expression tree to SQL (e.g. T-SQL). 
– 3. The SQL is transmitted to the database engine that executes the SQL. 
● Expression trees can also be used to solve other problems. 
– E.g. you can code own query providers to exploit expression trees.
13 
Extension Methods Example 
<ExtensionMethodsExamples> 
Shows the evolution from static utility methods to extension 
methods.
14 
Extension Methods 
● Sometimes you'd like to extend the set of methods a type provides. 
– But you can't do so because the type can't be inherited or is too abstract (interface). 
– Or changing a type (e.g. an interface) would break the code of present implementors. 
– Or inheritance is inappropriate: neither behavioral changes nor new fields are needed. 
– And you just have to use that type's public interface to create the extension. 
● When these kinds of desires arise you'll often end up with static utility methods. 
● The problem with static methods is that they don't belong to the extended type. 
– Neither C# nor Visual Studio will help you here. 
– You'll have to call and recall static methods like global functions with the "dot notation". 
● Promote static utility methods to extension methods to use them like members. 
– This will solve the discussed problems. 
– With extension methods the type looks like it was extended, but it was not modified.
15 
Pervasive Extension Methods – Example 
<ExtensionMethodsExamples> 
Shows the pervasiveness of extension methods.
16 
The Implementation Site of Extension Methods 
● Extension methods must be defined in top level static classes. 
– The leftmost parameter must be of the being-extended type, having the this keyword as prefix. 
– The defining class is sometimes called "sponsor class". 
● Any .Net type can be extended. 
– E.g. sealed, "concrete" and abstract types (including interfaces). 
– Unbound and constructed generic types. 
– If an ext. method adds a new overload the respective method group will be extended. 
● The extension methods itself: 
– The public members of the extended type can be accessed via the "this parameter". 
– Other parameters than the "this parameter" can be used also. 
– Multiple overloads can be defined as well. 
– A result can be returned to the caller or not. 
– There are no extension properties (indexers), constructors, events or operators.
17 
The Call Site of Extension Methods 
● The namespace of the static class defining the extension methods must be used. 
– That static class could be in the same namespace as the calling entity. 
– If not, a using directive to the namespace of that class is needed! 
● Calling extension methods. 
– They can be used with the period/pointer operator (i.e. "infix") on all instances directly. 
– (Infix: an instance of the extended type won't be passed as first argument.) 
– (The name of the static class defining the extension methods is never used then.) 
● Extension methods are pervasive on related types. 
– This means that they add candidates for method name resolution. 
– 1. Extension methods of interfaces are available for the implementing types as well. 
– 2. Extension methods of base types will extend sub types as well.
18 
Name Resolution and Binding of Extension Methods 
● Name resolution of extension methods with the same logical signature. 
– (The namespace of the class defining the ext. methods must be visible!) 
– They are compile time (i.e. statically) bound. 
– 1. Extension methods on interfaces overrule implemented instance methods. 
– 2. Extension methods on classes overrule, when they have a better matching signature. 
– 3. Extension methods on classes can't overrule instance methods of identical signature. 
– 4. Extension methods on classes can't overrule instance methods having an implicit conversion. 
– 5. Extension methods on classes can't overrule generic instance methods (best match). 
● Binding to generic types. 
– Extension methods can be defined for an unbound generic type. (IList<T>) 
– Extension methods can be defined for a constructed generic type. (IList<int>) 
– Extension methods of IEnumerable<T>s are an easy way to extend LINQ.
19 
Extension Methods as Type Augmentation 
● This slide describes how extension methods could be applied to augment types. 
● 1. Define the minimal interface as .Net interface. 
– Or leave the present interfaces and classes in your API as they are. 
● 2. Create augmentation methods as extension methods on that interface. 
● 3. Now programmers can decide to opt in the extension methods. 
– They just need to add a using directive to make the static class visible. 
– Then the extension methods are visible as well. 
● (4. Eventually the extension methods could be promoted to instance methods.)
20 
Final Words on Extension Methods 
● Extension methods aren't a new concept. 
– Similar to Obj-C's categories and slightly similar to mixins in Ruby, CLOS, D etc. 
● Underneath the compile time custom attribute "ExtensionAttribute" is applied. 
– E.g. in VB System.Runtime.CompilerServices.ExtensionAttribute must be used. 
– From .Net 2 code, ext. methods can be called with the old prefix period notation. 
● Problems with extension methods in practical usage: 
– Extension methods can not be found by reflection on the extended type. 
– Its pervasiveness on name resolution can lead to unexpected results. 
– A type seems to have a varying interface, this is confusing esp. for beginners. 
– Programmers can't tell instance methods from extension methods by the bare code. 
– Its usability is much depending on the code editor's quality (e.g. IntelliSense). 
– => Can be critical in usage, because code is more often read than written!
21 
Thank you!

More Related Content

More from Nico Ludwig

Grundkurs fuer excel_part_iii
Grundkurs fuer excel_part_iiiGrundkurs fuer excel_part_iii
Grundkurs fuer excel_part_iiiNico Ludwig
 
Grundkurs fuer excel_part_ii
Grundkurs fuer excel_part_iiGrundkurs fuer excel_part_ii
Grundkurs fuer excel_part_iiNico Ludwig
 
Grundkurs fuer excel_part_i
Grundkurs fuer excel_part_iGrundkurs fuer excel_part_i
Grundkurs fuer excel_part_iNico Ludwig
 
(1) gui history_of_interactivity
(1) gui history_of_interactivity(1) gui history_of_interactivity
(1) gui history_of_interactivityNico Ludwig
 
(1) gui history_of_interactivity
(1) gui history_of_interactivity(1) gui history_of_interactivity
(1) gui history_of_interactivityNico Ludwig
 
New c sharp4_features_part_vi
New c sharp4_features_part_viNew c sharp4_features_part_vi
New c sharp4_features_part_viNico Ludwig
 
New c sharp4_features_part_v
New c sharp4_features_part_vNew c sharp4_features_part_v
New c sharp4_features_part_vNico Ludwig
 
New c sharp4_features_part_iv
New c sharp4_features_part_ivNew c sharp4_features_part_iv
New c sharp4_features_part_ivNico Ludwig
 
New c sharp4_features_part_iii
New c sharp4_features_part_iiiNew c sharp4_features_part_iii
New c sharp4_features_part_iiiNico Ludwig
 
New c sharp4_features_part_ii
New c sharp4_features_part_iiNew c sharp4_features_part_ii
New c sharp4_features_part_iiNico Ludwig
 
New c sharp4_features_part_i
New c sharp4_features_part_iNew c sharp4_features_part_i
New c sharp4_features_part_iNico Ludwig
 
New c sharp3_features_(linq)_part_v
New c sharp3_features_(linq)_part_vNew c sharp3_features_(linq)_part_v
New c sharp3_features_(linq)_part_vNico Ludwig
 
New c sharp3_features_(linq)_part_iv
New c sharp3_features_(linq)_part_ivNew c sharp3_features_(linq)_part_iv
New c sharp3_features_(linq)_part_ivNico Ludwig
 
New c sharp3_features_(linq)_part_iv
New c sharp3_features_(linq)_part_ivNew c sharp3_features_(linq)_part_iv
New c sharp3_features_(linq)_part_ivNico Ludwig
 
New c sharp3_features_(linq)_part_iii
New c sharp3_features_(linq)_part_iiiNew c sharp3_features_(linq)_part_iii
New c sharp3_features_(linq)_part_iiiNico Ludwig
 
New c sharp3_features_(linq)_part_ii
New c sharp3_features_(linq)_part_iiNew c sharp3_features_(linq)_part_ii
New c sharp3_features_(linq)_part_iiNico Ludwig
 
New c sharp3_features_(linq)_part_i
New c sharp3_features_(linq)_part_iNew c sharp3_features_(linq)_part_i
New c sharp3_features_(linq)_part_iNico Ludwig
 
New c sharp3_features_(linq)_part_i
New c sharp3_features_(linq)_part_iNew c sharp3_features_(linq)_part_i
New c sharp3_features_(linq)_part_iNico Ludwig
 

More from Nico Ludwig (20)

Grundkurs fuer excel_part_iii
Grundkurs fuer excel_part_iiiGrundkurs fuer excel_part_iii
Grundkurs fuer excel_part_iii
 
Grundkurs fuer excel_part_ii
Grundkurs fuer excel_part_iiGrundkurs fuer excel_part_ii
Grundkurs fuer excel_part_ii
 
Grundkurs fuer excel_part_i
Grundkurs fuer excel_part_iGrundkurs fuer excel_part_i
Grundkurs fuer excel_part_i
 
(2) gui drawing
(2) gui drawing(2) gui drawing
(2) gui drawing
 
(2) gui drawing
(2) gui drawing(2) gui drawing
(2) gui drawing
 
(1) gui history_of_interactivity
(1) gui history_of_interactivity(1) gui history_of_interactivity
(1) gui history_of_interactivity
 
(1) gui history_of_interactivity
(1) gui history_of_interactivity(1) gui history_of_interactivity
(1) gui history_of_interactivity
 
New c sharp4_features_part_vi
New c sharp4_features_part_viNew c sharp4_features_part_vi
New c sharp4_features_part_vi
 
New c sharp4_features_part_v
New c sharp4_features_part_vNew c sharp4_features_part_v
New c sharp4_features_part_v
 
New c sharp4_features_part_iv
New c sharp4_features_part_ivNew c sharp4_features_part_iv
New c sharp4_features_part_iv
 
New c sharp4_features_part_iii
New c sharp4_features_part_iiiNew c sharp4_features_part_iii
New c sharp4_features_part_iii
 
New c sharp4_features_part_ii
New c sharp4_features_part_iiNew c sharp4_features_part_ii
New c sharp4_features_part_ii
 
New c sharp4_features_part_i
New c sharp4_features_part_iNew c sharp4_features_part_i
New c sharp4_features_part_i
 
New c sharp3_features_(linq)_part_v
New c sharp3_features_(linq)_part_vNew c sharp3_features_(linq)_part_v
New c sharp3_features_(linq)_part_v
 
New c sharp3_features_(linq)_part_iv
New c sharp3_features_(linq)_part_ivNew c sharp3_features_(linq)_part_iv
New c sharp3_features_(linq)_part_iv
 
New c sharp3_features_(linq)_part_iv
New c sharp3_features_(linq)_part_ivNew c sharp3_features_(linq)_part_iv
New c sharp3_features_(linq)_part_iv
 
New c sharp3_features_(linq)_part_iii
New c sharp3_features_(linq)_part_iiiNew c sharp3_features_(linq)_part_iii
New c sharp3_features_(linq)_part_iii
 
New c sharp3_features_(linq)_part_ii
New c sharp3_features_(linq)_part_iiNew c sharp3_features_(linq)_part_ii
New c sharp3_features_(linq)_part_ii
 
New c sharp3_features_(linq)_part_i
New c sharp3_features_(linq)_part_iNew c sharp3_features_(linq)_part_i
New c sharp3_features_(linq)_part_i
 
New c sharp3_features_(linq)_part_i
New c sharp3_features_(linq)_part_iNew c sharp3_features_(linq)_part_i
New c sharp3_features_(linq)_part_i
 

Recently uploaded

Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfSeasiaInfotech2
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 

Recently uploaded (20)

Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdf
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 

New c sharp3_features_(linq)_part_ii

  • 1. New C#3 Features (LINQ) – Part II Nico Ludwig (@ersatzteilchen)
  • 2. 2 TOC ● New C#3 Features (LINQ) – Part II – Implicit Typing – Lambda Expressions – Extension Methods ● Sources: – Jon Skeet, CSharp in Depth – Bill Wagner, Effective C# – Bill Wagner, More Effective C#
  • 3. 3 Local Type Inference Examples <TypeInferenceExamples> Presents local type inference.
  • 4. 4 Implicit Typing of local Variables // Initialization of a local // variable in C#1/C#2: string someData = "a string"; ● Explicit typing of local variables is no longer required! // New in C#3: declare someData as // implicitly typed local variable: var someData = "a string"; – Explicit type names can be replaced by the contextual keyword var on initializations. ● But implicitly typed variables are still statically and strongly typed! – They are statically and immutably typed after initialization. – Their static type is inferred by the compiler, it analyzes the initializer expression. – Only the interface of the static type can be used on them. – So they do not function like the type "Variant" in COM or VB 6 or var in JavaScript! – (Implicitly typed constants are not available.)
  • 5. 5 Details about implicit Typing ● The initializer expression needs not to be a constant or literal. – In C#3 there exist situations, in which the static type is unknown or anonymous. – These anonymous types are an important feature of LINQ in C#3! ● The compiler is not able to infer all types. – It must be an initialization expression (inferred is the type of the expression right from =). – It must be only one variable being declared. – The compiler cannot infer the type of anonymous functions or method groups (as they are typeless expressions). – The initializer must not be a null literal w/o cast (also a typeless expression). ● Type inference to constant symbols (a syntax like const instead of var i.e. "const inference"), is not supported. – (It wouldn't be very useful, because C# only allows compile time constants of primitive types.) ● Problems with the var keyword in practical usage: – It can make code more difficult to read; declaration and usage should be near. – Its usability is much depending on the code editor's quality (e.g. IntelliSense).
  • 6. 6 Pros and Cons of implicit Typing ● Pros – The compiler can often infer the most efficient type (esp. for LINQ results). – Implicitly typed variables must be initialized, which may reduce coding errors. – It can improve readability, when the inferred type is obvious. – Less "using-namespace-directives" are needed. – Code can be easier modified. ● Cons – Can be misunderstood by VB/COM/JavaScript developers. (No duck typing here!) – If the right hand side expression is complex, developers can't infer the type ;). – There are situations, when you are simply forced to use them. – Sometimes inference is the best solution, but it is not obvious why this the case. ● When in doubt mind that code is more often read than written!
  • 7. 7 Lambda Expressions first Example <LambdaExpressionExamples> Shows how lambda expressions can express Delegate instances.
  • 8. 8 Lambda Expressions as anonymous Functions // Classical usage of an anonymous // method to instantiate a Delegate: Predicate<int> isEven = delegate(int i) { return 0 == (i % 2); }; // New in C#3: usage of a lambda // expression to instantiate a Delegate: Predicate<int> isEven = i => 0 == (i % 2); ● Lambda expressions (lambdas) are an evolution of anonymous methods. – Anonymous methods and lambdas can be generalized to anonymous functions. – (Both allow to pass code as argument to another method.) – You can use expression lambdas and statement lambdas. – (Anonymous iterator blocks are not supported.) – You can generate expression trees from lambdas. – As a block of code lambdas can be debugged! – During run time the "names" of these anonymous functions are obfuscated to unspeakable compiler-generated symbols.
  • 9. 9 Lambdas in everyday Usage <LambdaExpressionExamples> Shows some everyday usage examples of lambda expressions.
  • 10. 10 Lambdas as Delegate Instances for everyday usage ● Whenever anonymous methods have been used, lambdas can be used now. – The compiler converts lambdas to Delegate types by type inference respectively. – So the utility methods on Collections (e.g. FindAll()) can deal with lambdas as well. – Functions can have other functions as parameter or result => higher-order functions. – The types Predicate<T>/Action/<T> and the new type Func<T, R> can be used. ● Lambdas can also be used for event handler code. ● If lambdas refer local or other variables, these variables are getting captured. – (I.e. lambdas lexically bind the enclosing scope's locals and the this reference.) – Captured variables can be modified within the capturing lambda! – The lifetime of captured locals is extended! Captured references can't be garbage collected (gc'd), as long as the Delegate instance (backing the lambda) wasn't gc'd! ● Partial application and currying are not directly supported but can be simulated.
  • 11. 11 Expression Tree Example <LambdaExpressionExamples> Shows the basic usage of expression trees.
  • 12. 12 Lambda Expressions for Expression Trees ● Expression trees allow to treat code as analyzable and synthesizable data. – It's not as hidden as IL code. – This is a way of meta programming. ● .Net 3.5 has a built-in support to compile lambdas into expression trees. – Mind to use the namespace System.Linq.Expressions! ● This is the cornerstone of LINQ to SQL to handle code as a tree of objects. – 1. Lambdas are parsed to expression trees. – 2. Query providers try to translate the expression tree to SQL (e.g. T-SQL). – 3. The SQL is transmitted to the database engine that executes the SQL. ● Expression trees can also be used to solve other problems. – E.g. you can code own query providers to exploit expression trees.
  • 13. 13 Extension Methods Example <ExtensionMethodsExamples> Shows the evolution from static utility methods to extension methods.
  • 14. 14 Extension Methods ● Sometimes you'd like to extend the set of methods a type provides. – But you can't do so because the type can't be inherited or is too abstract (interface). – Or changing a type (e.g. an interface) would break the code of present implementors. – Or inheritance is inappropriate: neither behavioral changes nor new fields are needed. – And you just have to use that type's public interface to create the extension. ● When these kinds of desires arise you'll often end up with static utility methods. ● The problem with static methods is that they don't belong to the extended type. – Neither C# nor Visual Studio will help you here. – You'll have to call and recall static methods like global functions with the "dot notation". ● Promote static utility methods to extension methods to use them like members. – This will solve the discussed problems. – With extension methods the type looks like it was extended, but it was not modified.
  • 15. 15 Pervasive Extension Methods – Example <ExtensionMethodsExamples> Shows the pervasiveness of extension methods.
  • 16. 16 The Implementation Site of Extension Methods ● Extension methods must be defined in top level static classes. – The leftmost parameter must be of the being-extended type, having the this keyword as prefix. – The defining class is sometimes called "sponsor class". ● Any .Net type can be extended. – E.g. sealed, "concrete" and abstract types (including interfaces). – Unbound and constructed generic types. – If an ext. method adds a new overload the respective method group will be extended. ● The extension methods itself: – The public members of the extended type can be accessed via the "this parameter". – Other parameters than the "this parameter" can be used also. – Multiple overloads can be defined as well. – A result can be returned to the caller or not. – There are no extension properties (indexers), constructors, events or operators.
  • 17. 17 The Call Site of Extension Methods ● The namespace of the static class defining the extension methods must be used. – That static class could be in the same namespace as the calling entity. – If not, a using directive to the namespace of that class is needed! ● Calling extension methods. – They can be used with the period/pointer operator (i.e. "infix") on all instances directly. – (Infix: an instance of the extended type won't be passed as first argument.) – (The name of the static class defining the extension methods is never used then.) ● Extension methods are pervasive on related types. – This means that they add candidates for method name resolution. – 1. Extension methods of interfaces are available for the implementing types as well. – 2. Extension methods of base types will extend sub types as well.
  • 18. 18 Name Resolution and Binding of Extension Methods ● Name resolution of extension methods with the same logical signature. – (The namespace of the class defining the ext. methods must be visible!) – They are compile time (i.e. statically) bound. – 1. Extension methods on interfaces overrule implemented instance methods. – 2. Extension methods on classes overrule, when they have a better matching signature. – 3. Extension methods on classes can't overrule instance methods of identical signature. – 4. Extension methods on classes can't overrule instance methods having an implicit conversion. – 5. Extension methods on classes can't overrule generic instance methods (best match). ● Binding to generic types. – Extension methods can be defined for an unbound generic type. (IList<T>) – Extension methods can be defined for a constructed generic type. (IList<int>) – Extension methods of IEnumerable<T>s are an easy way to extend LINQ.
  • 19. 19 Extension Methods as Type Augmentation ● This slide describes how extension methods could be applied to augment types. ● 1. Define the minimal interface as .Net interface. – Or leave the present interfaces and classes in your API as they are. ● 2. Create augmentation methods as extension methods on that interface. ● 3. Now programmers can decide to opt in the extension methods. – They just need to add a using directive to make the static class visible. – Then the extension methods are visible as well. ● (4. Eventually the extension methods could be promoted to instance methods.)
  • 20. 20 Final Words on Extension Methods ● Extension methods aren't a new concept. – Similar to Obj-C's categories and slightly similar to mixins in Ruby, CLOS, D etc. ● Underneath the compile time custom attribute "ExtensionAttribute" is applied. – E.g. in VB System.Runtime.CompilerServices.ExtensionAttribute must be used. – From .Net 2 code, ext. methods can be called with the old prefix period notation. ● Problems with extension methods in practical usage: – Extension methods can not be found by reflection on the extended type. – Its pervasiveness on name resolution can lead to unexpected results. – A type seems to have a varying interface, this is confusing esp. for beginners. – Programmers can't tell instance methods from extension methods by the bare code. – Its usability is much depending on the code editor's quality (e.g. IntelliSense). – => Can be critical in usage, because code is more often read than written!

Editor's Notes

  1. The keyword var is similar to C++11&amp;apos;s &amp;quot;additional meaning&amp;quot; of the auto keyword.
  2. Another con: The var keyword hurts the interface segregation principle (after SOLID). - It enforces a style, where on the left hand side of the assignment a non-interface type, but a very concrete type is inferred. A further con: confusion. Confusingly the var keyword is another way to express implicitly typed variables in C# (other ways: the let clause, the properties of anonymous types and arguments of generic methods).
  3. The operator =&amp;gt; is called &amp;quot;lambda operator&amp;quot; or &amp;quot;big arrow&amp;quot; or &amp;quot;rocket&amp;quot; (taken from Ruby&amp;apos;s &amp;quot;hashrocket&amp;quot; operator) and can be read as &amp;quot;goes to&amp;quot;. In ECMAScript&amp;apos;s/JavaScript&amp;apos;s function literals (var f = function(x) { return x * x; }) are equivalent to C#&amp;apos;s lambdas. - So in other words, JavaScript has lambdas for ages. Anonymous functions can not be iterator blocks. It was counted to be too much effort for the C# compiler team. Only top level methods can be iterator blocks. Anonymous iterator blocks are supported in VB11! The unspeakable symbols are then visible in stack-traces and in reverse-engineered code.
  4. From within anonymous methods you can refer the enclosing scope&amp;apos;s locals and also the this reference in instance methods of reference types. So in anonymous methods locals and the this reference are bound lexically. (In opposite to dynamic binding (binding variables where a function is called and not where it is declared) as, e.g., in JavaScript.) The details of garbage collection of captured variables have been discussed in the C#2 review. Partial application and currying: Partial application: Bind a function to variable or constant arguments, so that a new function will be returned that accepts less arguments than the original function. - It can be simulated by creating a new Delegate instance from a call of the bound function with a constant argument. Currying (named after the american mathematician Haskell Brooks Curry)/Schönfinkeln (named after the Russian mathematician Moses Ilyich Schönfinkel): Slash a function having multiple parameters into a function having only one parameter, but returning a chain of functions accepting the remaining parameters of the original function. - It can be simulated by cascading anonymous functions collecting the parameters and finally calling the original function. - In short a function having some parameters is converted into a function, which accepts less parameters by binding arguments to parameters.
  5. Expression trees can be created from lambda expressions, but not from anonymous methods. Notice that we have used the type Expression instead of the delegate types Action or Func. Expression objects can be compiled, serialized and passed to remote processes. These features are important as they allow expression trees to be used with IQueryable&amp;lt;T&amp;gt;, i.e. against remote databases.
  6. Top level static classes means not in nested static classes. You can extend multiple different types in the same static class (as it is done here), but this should be considered a bad practice. You should create one static class per type you are about to extend. In C# you can only extend types, not specific objects (but in Ruby both is possible). A method group is the set of all methods found by a member lookup of a certain method name in a certain context. E.g. all overloads of a method being effectively present due to inheritance from multiple types or extension methods are part of that method&amp;apos;s method group. Ctors do not build a method group! Extension methods can only access public members of the extended type; i.e. they are no &amp;quot;friends&amp;quot; as known from C++! If the &amp;quot;this-parameter&amp;quot; is null, then an ArgumentNullException should be thrown, because the &amp;quot;this-parameter&amp;quot; could also be passed explicitly (prefix notation).
  7. The name of the class in which the extension method is defined is irrelevant! When there exist extension methods of equal signature in different namespaces, these extension methods may clash if their namespaces are used in the same code file. The infix notation of extension methods allows to call them in a chained manner, then they are written in the order they are being executed. If the &amp;quot;this-parameter&amp;quot; is null, then an ArgumentNullException should be thrown, because the &amp;quot;this- parameter&amp;quot; could also be passed explicitly (prefix notation).
  8. Notice that the visibility of extension methods is controlled by using respective namespaces. Indeed extension methods allow extending a type&amp;apos;s interface w/o breaking the code of present consumers. Java 8 introduced so called defender or default methods, which can be fully implemented (i.e. with a function body) in an interface definition; default methods do not break an interface&amp;apos;s contract, but can be overridden in implementing types. Default methods make use of the template method design pattern.
  9. The idea of a mixin is to define a part of a new type by including a bundle of predefined functions. And this bundle is called mixin. Ruby has also so-called open classes, but this can not be simulated with C#&amp;apos;s extension methods.