SlideShare ist ein Scribd-Unternehmen logo
1 von 73
Attributes, Reflection, and
Dynamic Programming




     Learn More @ http://www.learnnowonline.com
        Copyright © by Application Developers Training Company
Decorating Code With
Decorating Code With
• Demo
Examples of
Applications That Use




       Learn More @ http://www.learnnowonline.com
          Copyright © by Application Developers Training Company
Examples of
Applications That Use
• Attributes are meta-data you can add
  to code




         Learn More @ http://www.learnnowonline.com
            Copyright © by Application Developers Training Company
Examples of
Applications That Use
• Attributes are meta-data you can add
  to code
• Examples of applications:




         Learn More @ http://www.learnnowonline.com
            Copyright © by Application Developers Training Company
Examples of
Applications That Use
• Attributes are meta-data you can add
  to code
• Examples of applications:
  • The C# compiler




          Learn More @ http://www.learnnowonline.com
             Copyright © by Application Developers Training Company
Examples of
Applications That Use
• Attributes are meta-data you can add
  to code
• Examples of applications:
  • The C# compiler
  • Web Services




          Learn More @ http://www.learnnowonline.com
             Copyright © by Application Developers Training Company
Examples of
Applications That Use
• Attributes are meta-data you can add
  to code
• Examples of applications:
  • The C# compiler
  • Web Services
  • Unit testing




           Learn More @ http://www.learnnowonline.com
              Copyright © by Application Developers Training Company
C# Compiler Attribute
C# Compiler Attribute
• ObsoleteAttribute marks code as being
  deprecated
C# Compiler Attribute
• ObsoleteAttribute marks code as being
  deprecated
• ConditionalAttribute removes code
  when a pre-processing directive isn’t
  defined
C# Compiler Attribute
• ObsoleteAttribute marks code as being
  deprecated
• ConditionalAttribute removes code
  when a pre-processing directive isn’t
  defined
• DllImportAttribute enables calling
  Windows OS APIs
Creating New Attributes
Creating New Attributes
• Demo
Deriving From Attribute
Deriving From Attribute
• Derive a new class from Attribute,
  a .NET Framework type
Deriving From Attribute
• Derive a new class from Attribute,
  a .NET Framework type
• Give your class a suffix of “Attribute”
Deriving From Attribute
• Derive a new class from Attribute,
  a .NET Framework type
• Give your class a suffix of “Attribute”
  • i.e. TestAttribute
Deriving From Attribute
• Derive a new class from Attribute,
  a .NET Framework type
• Give your class a suffix of “Attribute”
  • i.e. TestAttribute
  • Not required, but a common convention
Specifying Named and Positional
Parameters
Specifying Named and Positional
Parameters
• Positional parameters appear first
Specifying Named and Positional
Parameters
• Positional parameters appear first
• Named parameters follow
Specifying Named and Positional
Parameters
• Positional parameters appear first
• Named parameters follow
• For:
Specifying Named and Positional
Parameters
• Positional parameters appear first
• Named parameters follow
• For:
[DllImport("shell32.dll", EntryPoint="FindExecutable")]
Specifying Named and Positional
Parameters
• Positional parameters appear first
• Named parameters follow
• For:
[DllImport("shell32.dll", EntryPoint="FindExecutable")]
   • “shell32.dll” is positional
Specifying Named and Positional
Parameters
• Positional parameters appear first
• Named parameters follow
• For:
[DllImport("shell32.dll", EntryPoint="FindExecutable")]
   • “shell32.dll” is positional
   • EntryPoint="FindExecutable" is named
Decorating with
AttributeUsageAttribute
Decorating with
AttributeUsageAttribute
• Three Parameters
Decorating with
AttributeUsageAttribute
• Three Parameters
  • AllowMultiple – can use attribute more
   than once
Decorating with
AttributeUsageAttribute
• Three Parameters
  • AllowMultiple – can use attribute more
    than once
  • Inherited – applies to derived classes
Decorating with
AttributeUsageAttribute
• Three Parameters
  • AllowMultiple – can use attribute more
    than once
  • Inherited – applies to derived classes
  • ValidOn – defines where allowed to use
Using Reflection
Using Reflection
• Demo
Getting Type and TypeInfo
Getting Type and TypeInfo
• Reflection API split into two types
Getting Type and TypeInfo
• Reflection API split into two types
• Type provides reference support
Getting Type and TypeInfo
• Reflection API split into two types
• Type provides reference support
• TypeInfo offers execution support
Exploring Type Members
Exploring Type Members
• Once you have a type, you can query
  its members:
Exploring Type Members
• Once you have a type, you can query
  its members:
  • GetFields
Exploring Type Members
• Once you have a type, you can query
  its members:
  • GetFields
  • GetMethods
Exploring Type Members
• Once you have a type, you can query
  its members:
  • GetFields
  • GetMethods
  • GetProperties
Exploring Type Members
• Once you have a type, you can query
  its members:
  • GetFields
  • GetMethods
  • GetProperties
  • GetXxx
Exploring Type Members
• Once you have a type, you can query
  its members:
  • GetFields
  • GetMethods
  • GetProperties
  • GetXxx
• Continue to explore as you need
Dynamic Invocation
Dynamic Invocation
• You can dynamically invoke/run
  methods discovered through reflection
Dynamic Invocation
• You can dynamically invoke/run
  methods discovered through reflection
  • Get object reference, if instance
Dynamic Invocation
• You can dynamically invoke/run
  methods discovered through reflection
  • Get object reference, if instance
  • Specify parameters
Dynamic Invocation
• You can dynamically invoke/run
  methods discovered through reflection
  • Get object reference, if instance
  • Specify parameters
  • Call Invoke(…)
Dynamic Invocation
• You can dynamically invoke/run
  methods discovered through reflection
  • Get object reference, if instance
  • Specify parameters
  • Call Invoke(…)
  • Code runs
Coding Dynamic Types
Coding Dynamic Types
• Demo
Using Dynamic Types
Using Dynamic Types
• Declare type as dynamic
Using Dynamic Types
• Declare type as dynamic
• Can call any member
Using Dynamic Types
• Declare type as dynamic
• Can call any member
• Can assign to any member
Using Dynamic Types
•   Declare type as dynamic
•   Can call any member
•   Can assign to any member
•   No compile-time error
Using Dynamic Types
•   Declare type as dynamic
•   Can call any member
•   Can assign to any member
•   No compile-time error
•   Errors surface as runtime exceptions
The Expando Object
The Expando Object
• Lets you add/remove members
  dynamically
The Expando Object
• Lets you add/remove members
  dynamically
• Can pass object reference as
  parameter
The Expando Object
• Lets you add/remove members
  dynamically
• Can pass object reference as
  parameter
• Use members dynamically too
The Expando Object
• Lets you add/remove members
  dynamically
• Can pass object reference as
  parameter
• Use members dynamically too
• Get notified when add/remove occurs
Implementing
Implementing
• Derive from DynamicObject
Implementing
• Derive from DynamicObject
• Overrides let you do anything
  dynamically
Implementing
• Derive from DynamicObject
• Overrides let you do anything
  dynamically
• Examples of methods you can override
Implementing
• Derive from DynamicObject
• Overrides let you do anything
  dynamically
• Examples of methods you can override
  • TrySetMember
Implementing
• Derive from DynamicObject
• Overrides let you do anything
  dynamically
• Examples of methods you can override
  • TrySetMember
  • TryGetMember
Implementing
• Derive from DynamicObject
• Overrides let you do anything
  dynamically
• Examples of methods you can override
  • TrySetMember
  • TryGetMember
  • TryInvokeMember
Questions?




     Learn More @ http://www.learnnowonline.com
        Copyright © by Application Developers Training Company
Questions?

           http://
   www.LearnNowOnline.com



     Learn More @ http://www.learnnowonline.com
        Copyright © by Application Developers Training Company

Weitere ähnliche Inhalte

Was ist angesagt?

Introduction to Unit Testing, BDD and Mocking using TestBox & MockBox at Into...
Introduction to Unit Testing, BDD and Mocking using TestBox & MockBox at Into...Introduction to Unit Testing, BDD and Mocking using TestBox & MockBox at Into...
Introduction to Unit Testing, BDD and Mocking using TestBox & MockBox at Into...
Ortus Solutions, Corp
 
Ebay legacy-code-retreat
Ebay legacy-code-retreatEbay legacy-code-retreat
Ebay legacy-code-retreat
Konrad Malawski
 
Deep dive into Xtext scoping local and global scopes explained
Deep dive into Xtext scoping local and global scopes explainedDeep dive into Xtext scoping local and global scopes explained
Deep dive into Xtext scoping local and global scopes explained
Holger Schill
 
Zero to Testing in JavaScript
Zero to Testing in JavaScriptZero to Testing in JavaScript
Zero to Testing in JavaScript
pamselle
 

Was ist angesagt? (20)

PHP 8: What's New and Changed
PHP 8: What's New and ChangedPHP 8: What's New and Changed
PHP 8: What's New and Changed
 
Diving into Java Class Loader
Diving into Java Class LoaderDiving into Java Class Loader
Diving into Java Class Loader
 
Improve your development skills with Test Driven Development
Improve your development skills with Test Driven DevelopmentImprove your development skills with Test Driven Development
Improve your development skills with Test Driven Development
 
Improving the Quality of Existing Software
Improving the Quality of Existing SoftwareImproving the Quality of Existing Software
Improving the Quality of Existing Software
 
Stop Hacking WordPress, Start Working with it - Charly Leetham - WordCamp Syd...
Stop Hacking WordPress, Start Working with it - Charly Leetham - WordCamp Syd...Stop Hacking WordPress, Start Working with it - Charly Leetham - WordCamp Syd...
Stop Hacking WordPress, Start Working with it - Charly Leetham - WordCamp Syd...
 
Introduction to Unit Testing, BDD and Mocking using TestBox & MockBox at Into...
Introduction to Unit Testing, BDD and Mocking using TestBox & MockBox at Into...Introduction to Unit Testing, BDD and Mocking using TestBox & MockBox at Into...
Introduction to Unit Testing, BDD and Mocking using TestBox & MockBox at Into...
 
Introduction to Unit Testing, BDD and Mocking using TestBox & MockBox at Adob...
Introduction to Unit Testing, BDD and Mocking using TestBox & MockBox at Adob...Introduction to Unit Testing, BDD and Mocking using TestBox & MockBox at Adob...
Introduction to Unit Testing, BDD and Mocking using TestBox & MockBox at Adob...
 
Few minutes To better Code - Refactoring
Few minutes To better Code - RefactoringFew minutes To better Code - Refactoring
Few minutes To better Code - Refactoring
 
Ebay legacy-code-retreat
Ebay legacy-code-retreatEbay legacy-code-retreat
Ebay legacy-code-retreat
 
Java to Scala: Why & How
Java to Scala: Why & HowJava to Scala: Why & How
Java to Scala: Why & How
 
Unfiltered Unveiled
Unfiltered UnveiledUnfiltered Unveiled
Unfiltered Unveiled
 
CSCI 200 Java Chapter 03 Using Classes
CSCI 200 Java Chapter 03 Using ClassesCSCI 200 Java Chapter 03 Using Classes
CSCI 200 Java Chapter 03 Using Classes
 
The Cowardly Test-o-Phobe's Guide To Testing
The Cowardly Test-o-Phobe's Guide To TestingThe Cowardly Test-o-Phobe's Guide To Testing
The Cowardly Test-o-Phobe's Guide To Testing
 
Deep dive into Xtext scoping local and global scopes explained
Deep dive into Xtext scoping local and global scopes explainedDeep dive into Xtext scoping local and global scopes explained
Deep dive into Xtext scoping local and global scopes explained
 
Improving The Quality of Existing Software
Improving The Quality of Existing SoftwareImproving The Quality of Existing Software
Improving The Quality of Existing Software
 
Java 201 Intro to Test Driven Development in Java
Java 201   Intro to Test Driven Development in JavaJava 201   Intro to Test Driven Development in Java
Java 201 Intro to Test Driven Development in Java
 
TDD with PhpSpec - Lone Star PHP 2016
TDD with PhpSpec - Lone Star PHP 2016TDD with PhpSpec - Lone Star PHP 2016
TDD with PhpSpec - Lone Star PHP 2016
 
Automated Acceptance Tests in .NET
Automated Acceptance Tests in .NETAutomated Acceptance Tests in .NET
Automated Acceptance Tests in .NET
 
Zero to Testing in JavaScript
Zero to Testing in JavaScriptZero to Testing in JavaScript
Zero to Testing in JavaScript
 
Refactoring
RefactoringRefactoring
Refactoring
 

Andere mochten auch

Andere mochten auch (14)

.NET Attributes and Reflection - What a Developer Needs to Know...
.NET Attributes and Reflection - What a Developer Needs to Know....NET Attributes and Reflection - What a Developer Needs to Know...
.NET Attributes and Reflection - What a Developer Needs to Know...
 
Learning .NET Attributes
Learning .NET AttributesLearning .NET Attributes
Learning .NET Attributes
 
Asynchronous Programming
Asynchronous ProgrammingAsynchronous Programming
Asynchronous Programming
 
New in the Visual Studio 2012 IDE
New in the Visual Studio 2012 IDENew in the Visual Studio 2012 IDE
New in the Visual Studio 2012 IDE
 
Windows 8: Shapes and Geometries
Windows 8: Shapes and GeometriesWindows 8: Shapes and Geometries
Windows 8: Shapes and Geometries
 
WPF: Working with Data
WPF: Working with DataWPF: Working with Data
WPF: Working with Data
 
WPF Binding
WPF BindingWPF Binding
WPF Binding
 
SQL: Permissions and Data Protection
SQL: Permissions and Data ProtectionSQL: Permissions and Data Protection
SQL: Permissions and Data Protection
 
Reflection in C#
Reflection in C#Reflection in C#
Reflection in C#
 
.Net Core
.Net Core.Net Core
.Net Core
 
ASP.NET Core 1.0 Overview
ASP.NET Core 1.0 OverviewASP.NET Core 1.0 Overview
ASP.NET Core 1.0 Overview
 
C#/.NET Little Wonders
C#/.NET Little WondersC#/.NET Little Wonders
C#/.NET Little Wonders
 
C# Tutorial
C# Tutorial C# Tutorial
C# Tutorial
 
.NET and C# Introduction
.NET and C# Introduction.NET and C# Introduction
.NET and C# Introduction
 

Ähnlich wie Attributes, reflection, and dynamic programming

How To Use Selenium Successfully (Java Edition)
How To Use Selenium Successfully (Java Edition)How To Use Selenium Successfully (Java Edition)
How To Use Selenium Successfully (Java Edition)
Dave Haeffner
 

Ähnlich wie Attributes, reflection, and dynamic programming (20)

Ember - introduction
Ember - introductionEmber - introduction
Ember - introduction
 
Software design with Domain-driven design
Software design with Domain-driven design Software design with Domain-driven design
Software design with Domain-driven design
 
How to use selenium successfully
How to use selenium successfullyHow to use selenium successfully
How to use selenium successfully
 
Introduction to cypress in Angular (Chinese)
Introduction to cypress in Angular (Chinese)Introduction to cypress in Angular (Chinese)
Introduction to cypress in Angular (Chinese)
 
Five Enterprise Development Best Practices That EVERY Salesforce Org Can Use
Five Enterprise Development Best Practices That EVERY Salesforce Org Can UseFive Enterprise Development Best Practices That EVERY Salesforce Org Can Use
Five Enterprise Development Best Practices That EVERY Salesforce Org Can Use
 
Mastering Test Automation: How to Use Selenium Successfully
Mastering Test Automation: How to Use Selenium Successfully Mastering Test Automation: How to Use Selenium Successfully
Mastering Test Automation: How to Use Selenium Successfully
 
Xamarin.Forms or Write Once, Run Anywhere
Xamarin.Forms or Write Once, Run AnywhereXamarin.Forms or Write Once, Run Anywhere
Xamarin.Forms or Write Once, Run Anywhere
 
Object-Oriented JavaScript
Object-Oriented JavaScriptObject-Oriented JavaScript
Object-Oriented JavaScript
 
Selenium Tips & Tricks, presented at the Tel Aviv Selenium Meetup
Selenium Tips & Tricks, presented at the Tel Aviv Selenium MeetupSelenium Tips & Tricks, presented at the Tel Aviv Selenium Meetup
Selenium Tips & Tricks, presented at the Tel Aviv Selenium Meetup
 
Five Enterprise Best Practices That EVERY Salesforce Org Can Use (DF15 Session)
Five Enterprise Best Practices That EVERY Salesforce Org Can Use (DF15 Session)Five Enterprise Best Practices That EVERY Salesforce Org Can Use (DF15 Session)
Five Enterprise Best Practices That EVERY Salesforce Org Can Use (DF15 Session)
 
Using The .NET Framework
Using The .NET FrameworkUsing The .NET Framework
Using The .NET Framework
 
If you want to automate, you learn to code
If you want to automate, you learn to codeIf you want to automate, you learn to code
If you want to automate, you learn to code
 
How To Use Selenium Successfully (Java Edition)
How To Use Selenium Successfully (Java Edition)How To Use Selenium Successfully (Java Edition)
How To Use Selenium Successfully (Java Edition)
 
Shift Remote: Mobile - Efficiently Building Native Frameworks for Multiple Pl...
Shift Remote: Mobile - Efficiently Building Native Frameworks for Multiple Pl...Shift Remote: Mobile - Efficiently Building Native Frameworks for Multiple Pl...
Shift Remote: Mobile - Efficiently Building Native Frameworks for Multiple Pl...
 
Handlebars & Require JS
Handlebars  & Require JSHandlebars  & Require JS
Handlebars & Require JS
 
How To Use Selenium Successfully
How To Use Selenium SuccessfullyHow To Use Selenium Successfully
How To Use Selenium Successfully
 
Asp.Net MVC 5 in Arabic
Asp.Net MVC 5 in ArabicAsp.Net MVC 5 in Arabic
Asp.Net MVC 5 in Arabic
 
Angular Application Testing
Angular Application TestingAngular Application Testing
Angular Application Testing
 
How To Use Selenium Successfully (Java Edition)
How To Use Selenium Successfully (Java Edition)How To Use Selenium Successfully (Java Edition)
How To Use Selenium Successfully (Java Edition)
 
Building strong foundations apex enterprise patterns
Building strong foundations apex enterprise patternsBuilding strong foundations apex enterprise patterns
Building strong foundations apex enterprise patterns
 

Mehr von LearnNowOnline

Mehr von LearnNowOnline (20)

A tour of SQL Server
A tour of SQL ServerA tour of SQL Server
A tour of SQL Server
 
Introducing LINQ
Introducing LINQIntroducing LINQ
Introducing LINQ
 
Generics
GenericsGenerics
Generics
 
Object oriented techniques
Object oriented techniquesObject oriented techniques
Object oriented techniques
 
SharePoint Document Management
SharePoint Document ManagementSharePoint Document Management
SharePoint Document Management
 
SharePoint: Introduction to InfoPath
SharePoint: Introduction to InfoPathSharePoint: Introduction to InfoPath
SharePoint: Introduction to InfoPath
 
Managing site collections
Managing site collectionsManaging site collections
Managing site collections
 
Web API HTTP Pipeline
Web API HTTP PipelineWeb API HTTP Pipeline
Web API HTTP Pipeline
 
Web API Basics
Web API BasicsWeb API Basics
Web API Basics
 
SQL Server: Security
SQL Server: SecuritySQL Server: Security
SQL Server: Security
 
Sql 2012 development and programming
Sql 2012  development and programmingSql 2012  development and programming
Sql 2012 development and programming
 
What's new in Silverlight 5
What's new in Silverlight 5What's new in Silverlight 5
What's new in Silverlight 5
 
KnockOutJS with ASP.NET MVC
KnockOutJS with ASP.NET MVCKnockOutJS with ASP.NET MVC
KnockOutJS with ASP.NET MVC
 
Expression Blend Motion & Interaction Design
Expression Blend Motion & Interaction DesignExpression Blend Motion & Interaction Design
Expression Blend Motion & Interaction Design
 
The Entity Data Model
The Entity Data ModelThe Entity Data Model
The Entity Data Model
 
Introducing the Entity Framework
Introducing the Entity FrameworkIntroducing the Entity Framework
Introducing the Entity Framework
 
Introduction to ASP.NET MVC
Introduction to ASP.NET MVCIntroduction to ASP.NET MVC
Introduction to ASP.NET MVC
 
Working with Controllers and Actions in MVC
Working with Controllers and Actions in MVCWorking with Controllers and Actions in MVC
Working with Controllers and Actions in MVC
 
Creating a User Interface
Creating a User InterfaceCreating a User Interface
Creating a User Interface
 
Building Windows 8 Metro Style Applications Using JavaScript and HTML5
Building Windows 8 Metro Style Applications Using JavaScript and HTML5Building Windows 8 Metro Style Applications Using JavaScript and HTML5
Building Windows 8 Metro Style Applications Using JavaScript and HTML5
 

Kürzlich hochgeladen

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Kürzlich hochgeladen (20)

From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024Manulife - Insurer Innovation Award 2024
Manulife - Insurer Innovation Award 2024
 

Attributes, reflection, and dynamic programming

Hinweis der Redaktion

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n
  27. \n
  28. \n
  29. \n
  30. \n
  31. \n
  32. \n
  33. \n
  34. \n
  35. \n
  36. \n
  37. \n
  38. \n
  39. \n
  40. \n
  41. \n
  42. \n
  43. \n
  44. \n
  45. \n
  46. \n
  47. \n
  48. \n
  49. \n
  50. \n
  51. \n
  52. \n
  53. \n
  54. \n
  55. \n
  56. \n
  57. \n