{"id":7905,"date":"2023-07-27T11:26:12","date_gmt":"2023-07-27T09:26:12","guid":{"rendered":"https:\/\/medtech-ingenieur.de\/?p=7905"},"modified":"2023-10-25T14:22:17","modified_gmt":"2023-10-25T12:22:17","slug":"toolentwicklung-in-c","status":"publish","type":"post","link":"https:\/\/medtech-ingenieur.de\/en\/toolentwicklung-in-c\/","title":{"rendered":"Tool development in C#"},"content":{"rendered":"<h2><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-8000 size-full\" src=\"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2.png\" alt=\"\" width=\"1366\" height=\"768\" srcset=\"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2.png 1366w, https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2-300x169.png 300w, https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2-768x432.png 768w, https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2-1024x576.png 1024w, https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2-100x56.png 100w, https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2-150x84.png 150w, https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2-200x112.png 200w, https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2-450x253.png 450w, https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2-600x337.png 600w, https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2-900x506.png 900w\" sizes=\"auto, (max-width: 1366px) 100vw, 1366px\" \/><\/h2>\n<h2>Why develop a tool?<\/h2>\n<p>Tools are utilities that can support us with specific tasks or subtasks, or even take them over completely. C# can also be used to create tools for specific tasks. Here at MEDtech Ingenieur, we have already developed several tools, for example, for testing or controlling devices, to perform such tasks more efficiently. This blog post explains why the C# programming language is a good choice for tool development and what a standard approach to tool development might look like.<\/p>\n<p>&nbsp;<\/p>\n<h2>Why C#?<\/h2>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>C# is a modern and widely used programming language that is constantly being developed by Microsoft. Numerous packages and libraries already exist that facilitate programming with C#.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>For most tools, the classic command line isn&#039;t sufficient. For C#, graphical user interfaces can easily be created using WPF, Windows Forms, or UWP, which provide all the necessary graphical functionality, such as buttons, sliders, text fields, etc.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>To ensure the functionality of a tool, unit tests can be used to test the individual components of a program. This is particularly useful for applications with many special cases. Several extensions and tools for C# are available to enable detailed testing.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<ul>\n<li>Instead of constantly handing the tool over to users as an executable or as a folder containing all the necessary files, you can create an installer for your project in just a few clicks using the SetupWizard package in Microsoft Visual Studio in C#. The generated installer installs your tool for your users and creates, for example, a shortcut directly on their desktop.<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h2>How to create a tool in C#?<\/h2>\n<p><strong>Our approach<\/strong><br \/>\nThe following lists and explains the basic steps for successfully programming a tool. These steps can overlap or be repeated multiple times.<\/p>\n<p>For example, it is rare that the first draft of the user interface does not need to be changed or that no further requirements arise during development.<\/p>\n<p>&nbsp;<\/p>\n<h3>Define problem and requirements<\/h3>\n<p>First, some questions must be answered that significantly influence the basic building blocks for the rest of the process and the structure of the tool:<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>What is the tool for?<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Who is the end user<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>What knowledge does the end user have?<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>What kind of user interface should the tool have? Is a command line sufficient, or is a graphical user interface required?<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<ul>\n<li>What should the tool be able to do?<br \/>\n\u2013 What should the user be able to enter?<br \/>\n\u2013 What should be returned\/displayed to the user?<br \/>\n\u2013 Are there additional interfaces to other applications or devices?<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h3>Setting up the architecture<\/h3>\n<p>Before you dive into programming, it&#039;s a good idea to consider an architecture for the project. This will later serve as a guideline for programming the tool.<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>The architecture defines smaller functional units of your project and their relationships to each other.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Furthermore, it defines the areas of responsibility of the functional units.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>The architecture is based on the knowledge from the requirements and ensures that the tool can later fulfill all required tasks.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<ul>\n<li>The interfaces to other functional units such as other applications and devices must be considered and defined in the architecture<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h3>Creating a first draft of a user interface<\/h3>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Creating a user interface provides a first impression of whether the problem has been truly understood. By consulting with the target audience, missing features or confusing or incorrect program flows can be avoided early on.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<ul>\n<li>In order to achieve a good user experience, it is recommended to test features together with future users after they have been implemented.<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h3>Programming the tool<\/h3>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Programming the functional units defined in the architecture<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<ul>\n<li>Connecting the logic to the user interface<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h3>Unit testing<\/h3>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Unit tests ensure the functionality of individual functional units (classes and methods)<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<ul>\n<li>The architecture should be designed so that functional units can always be tested independently and completely. This facilitates subsequent changes and the interchangeability of individual program sections, as well as providing assurance that a change won&#039;t &quot;break&quot; other functions.<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h3>Creating a Setup.exe<\/h3>\n<ul>\n<li>For most users, an installer is more convenient than a folder containing an executable. Using the SetupWizard package for C#, you can create an installer in just a few clicks, allowing your users to easily install the tool.<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h2>Helpful tips:<\/h2>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Regular consultation with the end user ensures that misunderstandings are resolved early on and that the user interface is designed to be understandable and user-friendly. For example, sliders or dropdown menus are sometimes more convenient for users than text fields and save time later on when using the tool.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<ul>\n<li>Documentation and commenting of code<br \/>\nIf it&#039;s clear from the outset that the tool will be used for a long time and may need to be adapted later, it&#039;s worth creating documentation. This makes it easier for you to navigate the code even after a long time, and other programmers can also familiarize themselves with the code more quickly. Errors in the architecture or programming can also be discovered during documentation.<\/li>\n<\/ul>","protected":false},"excerpt":{"rendered":"<p>Warum ein Tool entwickeln? Tools sind Hilfsprogramme, welche den uns bei bestimmten Aufgaben oder Teilaufgaben unterst\u00fctzen oder diese vollst\u00e4ndig abnehmen k\u00f6nnen. Mit C# k\u00f6nnen auch Tools f\u00fcr spezifische Aufgaben erstellt werden. Hier bei MEDtech Ingenieur haben wir schon mehrere Tools, etwa f\u00fcr das Testen oder Steuern von Ger\u00e4ten entwickelt, um solche Arbeiten effizienter durchf\u00fchren zu [&hellip;]<\/p>\n","protected":false},"author":40,"featured_media":8000,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,6,7,468,8],"tags":[649,663,564,662],"class_list":["post-7905","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-allgemein","category-software","category-systemarchitekten","category-testen","category-tools","tag-c","tag-programmieren","tag-tool","tag-toolentwicklung","post-wrapper","thrv_wrapper"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Toolentwicklung in C# - MEDtech Ingenieur GmbH<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/medtech-ingenieur.de\/en\/toolentwicklung-in-c\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Toolentwicklung in C# - MEDtech Ingenieur GmbH\" \/>\n<meta property=\"og:description\" content=\"Warum ein Tool entwickeln? Tools sind Hilfsprogramme, welche den uns bei bestimmten Aufgaben oder Teilaufgaben unterst\u00fctzen oder diese vollst\u00e4ndig abnehmen k\u00f6nnen. Mit C# k\u00f6nnen auch Tools f\u00fcr spezifische Aufgaben erstellt werden. Hier bei MEDtech Ingenieur haben wir schon mehrere Tools, etwa f\u00fcr das Testen oder Steuern von Ger\u00e4ten entwickelt, um solche Arbeiten effizienter durchf\u00fchren zu [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/medtech-ingenieur.de\/en\/toolentwicklung-in-c\/\" \/>\n<meta property=\"og:site_name\" content=\"MEDtech Ingenieur GmbH\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/medtechIngenieur\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-27T09:26:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-25T12:22:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1366\" \/>\n\t<meta property=\"og:image:height\" content=\"768\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Alisa Schulz\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@MedtechIng\" \/>\n<meta name=\"twitter:site\" content=\"@MedtechIng\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Alisa Schulz\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/toolentwicklung-in-c\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/toolentwicklung-in-c\\\/\"},\"author\":{\"name\":\"Alisa Schulz\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#\\\/schema\\\/person\\\/3c1800422d500e3f54ac7baa2c493948\"},\"headline\":\"Toolentwicklung in C#\",\"datePublished\":\"2023-07-27T09:26:12+00:00\",\"dateModified\":\"2023-10-25T12:22:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/toolentwicklung-in-c\\\/\"},\"wordCount\":871,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/toolentwicklung-in-c\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/medtech-ingenieur.de\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/Affordable-homes-in-thriving-communities-2.png\",\"keywords\":[\"c#\",\"programmieren\",\"Tool\",\"toolentwicklung\"],\"articleSection\":[\"Allgemein\",\"Software\",\"Systems Engineering\",\"Testen\",\"Tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/medtech-ingenieur.de\\\/toolentwicklung-in-c\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/toolentwicklung-in-c\\\/\",\"url\":\"https:\\\/\\\/medtech-ingenieur.de\\\/toolentwicklung-in-c\\\/\",\"name\":\"Toolentwicklung in C# - MEDtech Ingenieur GmbH\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/toolentwicklung-in-c\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/toolentwicklung-in-c\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/medtech-ingenieur.de\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/Affordable-homes-in-thriving-communities-2.png\",\"datePublished\":\"2023-07-27T09:26:12+00:00\",\"dateModified\":\"2023-10-25T12:22:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/toolentwicklung-in-c\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/medtech-ingenieur.de\\\/toolentwicklung-in-c\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/toolentwicklung-in-c\\\/#primaryimage\",\"url\":\"https:\\\/\\\/medtech-ingenieur.de\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/Affordable-homes-in-thriving-communities-2.png\",\"contentUrl\":\"https:\\\/\\\/medtech-ingenieur.de\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/Affordable-homes-in-thriving-communities-2.png\",\"width\":1366,\"height\":768},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/toolentwicklung-in-c\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/medtech-ingenieur.de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Toolentwicklung in C#\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#website\",\"url\":\"https:\\\/\\\/medtech-ingenieur.de\\\/\",\"name\":\"MEDtech Ingenieur GmbH\",\"description\":\"Ingenieursdienstleister f\u00fcr Medizintechnik\",\"publisher\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#organization\"},\"alternateName\":\"MEDtech\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/medtech-ingenieur.de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#organization\",\"name\":\"MEDtech Ingenieur\",\"alternateName\":\"MEDtech\",\"url\":\"https:\\\/\\\/medtech-ingenieur.de\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/medtech-ingenieur.de\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/logo-700x700-1.png\",\"contentUrl\":\"https:\\\/\\\/medtech-ingenieur.de\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/logo-700x700-1.png\",\"width\":700,\"height\":700,\"caption\":\"MEDtech Ingenieur\"},\"image\":{\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/medtechIngenieur\",\"https:\\\/\\\/x.com\\\/MedtechIng\",\"https:\\\/\\\/www.instagram.com\\\/medtech.ingenieure\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/37871229\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/medtech-ingenieur.de\\\/#\\\/schema\\\/person\\\/3c1800422d500e3f54ac7baa2c493948\",\"name\":\"Alisa Schulz\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12cc2ec96702ad3d6669a851c07c9d09d71c8318e25533a7a1491b7f510ec69b?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12cc2ec96702ad3d6669a851c07c9d09d71c8318e25533a7a1491b7f510ec69b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12cc2ec96702ad3d6669a851c07c9d09d71c8318e25533a7a1491b7f510ec69b?s=96&d=mm&r=g\",\"caption\":\"Alisa Schulz\"},\"url\":\"https:\\\/\\\/medtech-ingenieur.de\\\/en\\\/author\\\/alisa\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Toolentwicklung in C# - MEDtech Ingenieur GmbH","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/medtech-ingenieur.de\/en\/toolentwicklung-in-c\/","og_locale":"en_US","og_type":"article","og_title":"Toolentwicklung in C# - MEDtech Ingenieur GmbH","og_description":"Warum ein Tool entwickeln? Tools sind Hilfsprogramme, welche den uns bei bestimmten Aufgaben oder Teilaufgaben unterst\u00fctzen oder diese vollst\u00e4ndig abnehmen k\u00f6nnen. Mit C# k\u00f6nnen auch Tools f\u00fcr spezifische Aufgaben erstellt werden. Hier bei MEDtech Ingenieur haben wir schon mehrere Tools, etwa f\u00fcr das Testen oder Steuern von Ger\u00e4ten entwickelt, um solche Arbeiten effizienter durchf\u00fchren zu [&hellip;]","og_url":"https:\/\/medtech-ingenieur.de\/en\/toolentwicklung-in-c\/","og_site_name":"MEDtech Ingenieur GmbH","article_publisher":"https:\/\/www.facebook.com\/medtechIngenieur","article_published_time":"2023-07-27T09:26:12+00:00","article_modified_time":"2023-10-25T12:22:17+00:00","og_image":[{"width":1366,"height":768,"url":"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2.png","type":"image\/png"}],"author":"Alisa Schulz","twitter_card":"summary_large_image","twitter_creator":"@MedtechIng","twitter_site":"@MedtechIng","twitter_misc":{"Written by":"Alisa Schulz","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/medtech-ingenieur.de\/toolentwicklung-in-c\/#article","isPartOf":{"@id":"https:\/\/medtech-ingenieur.de\/toolentwicklung-in-c\/"},"author":{"name":"Alisa Schulz","@id":"https:\/\/medtech-ingenieur.de\/#\/schema\/person\/3c1800422d500e3f54ac7baa2c493948"},"headline":"Toolentwicklung in C#","datePublished":"2023-07-27T09:26:12+00:00","dateModified":"2023-10-25T12:22:17+00:00","mainEntityOfPage":{"@id":"https:\/\/medtech-ingenieur.de\/toolentwicklung-in-c\/"},"wordCount":871,"commentCount":0,"publisher":{"@id":"https:\/\/medtech-ingenieur.de\/#organization"},"image":{"@id":"https:\/\/medtech-ingenieur.de\/toolentwicklung-in-c\/#primaryimage"},"thumbnailUrl":"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2.png","keywords":["c#","programmieren","Tool","toolentwicklung"],"articleSection":["Allgemein","Software","Systems Engineering","Testen","Tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/medtech-ingenieur.de\/toolentwicklung-in-c\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/medtech-ingenieur.de\/toolentwicklung-in-c\/","url":"https:\/\/medtech-ingenieur.de\/toolentwicklung-in-c\/","name":"Toolentwicklung in C# - MEDtech Ingenieur GmbH","isPartOf":{"@id":"https:\/\/medtech-ingenieur.de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/medtech-ingenieur.de\/toolentwicklung-in-c\/#primaryimage"},"image":{"@id":"https:\/\/medtech-ingenieur.de\/toolentwicklung-in-c\/#primaryimage"},"thumbnailUrl":"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2.png","datePublished":"2023-07-27T09:26:12+00:00","dateModified":"2023-10-25T12:22:17+00:00","breadcrumb":{"@id":"https:\/\/medtech-ingenieur.de\/toolentwicklung-in-c\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/medtech-ingenieur.de\/toolentwicklung-in-c\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/medtech-ingenieur.de\/toolentwicklung-in-c\/#primaryimage","url":"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2.png","contentUrl":"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2023\/07\/Affordable-homes-in-thriving-communities-2.png","width":1366,"height":768},{"@type":"BreadcrumbList","@id":"https:\/\/medtech-ingenieur.de\/toolentwicklung-in-c\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/medtech-ingenieur.de\/"},{"@type":"ListItem","position":2,"name":"Toolentwicklung in C#"}]},{"@type":"WebSite","@id":"https:\/\/medtech-ingenieur.de\/#website","url":"https:\/\/medtech-ingenieur.de\/","name":"MEDtech Ingenieur GmbH","description":"Engineering service provider for medical technology","publisher":{"@id":"https:\/\/medtech-ingenieur.de\/#organization"},"alternateName":"MEDtech","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/medtech-ingenieur.de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/medtech-ingenieur.de\/#organization","name":"MEDtech Engineer","alternateName":"MEDtech","url":"https:\/\/medtech-ingenieur.de\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/medtech-ingenieur.de\/#\/schema\/logo\/image\/","url":"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2024\/01\/logo-700x700-1.png","contentUrl":"https:\/\/medtech-ingenieur.de\/wp-content\/uploads\/2024\/01\/logo-700x700-1.png","width":700,"height":700,"caption":"MEDtech Ingenieur"},"image":{"@id":"https:\/\/medtech-ingenieur.de\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/medtechIngenieur","https:\/\/x.com\/MedtechIng","https:\/\/www.instagram.com\/medtech.ingenieure\/","https:\/\/www.linkedin.com\/company\/37871229\/"]},{"@type":"Person","@id":"https:\/\/medtech-ingenieur.de\/#\/schema\/person\/3c1800422d500e3f54ac7baa2c493948","name":"Alisa Schulz","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/12cc2ec96702ad3d6669a851c07c9d09d71c8318e25533a7a1491b7f510ec69b?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/12cc2ec96702ad3d6669a851c07c9d09d71c8318e25533a7a1491b7f510ec69b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/12cc2ec96702ad3d6669a851c07c9d09d71c8318e25533a7a1491b7f510ec69b?s=96&d=mm&r=g","caption":"Alisa Schulz"},"url":"https:\/\/medtech-ingenieur.de\/en\/author\/alisa\/"}]}},"_links":{"self":[{"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/posts\/7905","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/users\/40"}],"replies":[{"embeddable":true,"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/comments?post=7905"}],"version-history":[{"count":14,"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/posts\/7905\/revisions"}],"predecessor-version":[{"id":8021,"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/posts\/7905\/revisions\/8021"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/media\/8000"}],"wp:attachment":[{"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/media?parent=7905"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/categories?post=7905"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/medtech-ingenieur.de\/en\/wp-json\/wp\/v2\/tags?post=7905"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}