
dotnet-snippets.com
dotnet-snippets.comdotnet-snippets.com - your code snippet source.
http://www.dotnet-snippets.com/
dotnet-snippets.com - your code snippet source.
http://www.dotnet-snippets.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Monday
LOAD TIME
0.7 seconds
16x16
32x32
64x64
128x128
private
Jan Welker
Dahl●●●●tr 9
Nue●●●erg , 90491
DE
View this contact
private
Jan Welker
Dahl●●●●tr 9
Nue●●●erg , 90491
DE
View this contact
Albert Brons Internetdienste
Albert Brons
Humbo●●●●●tr 67
Mo●●rs , 47441
DE
View this contact
17
YEARS
9
MONTHS
18
DAYS
VAUTRON RECHENZENTRUM AG
WHOIS : whois.antagus.de
REFERRED : http://www.vautron.de
PAGES IN
THIS WEBSITE
20
SSL
EXTERNAL LINKS
53
SITE IP
176.28.49.94
LOAD TIME
0.675 sec
SCORE
6.2
dotnet-snippets.com | dotnet-snippets.com Reviews
https://dotnet-snippets.com
dotnet-snippets.com - your code snippet source.
C# - Get screen scaling
http://dotnet-snippets.com/snippet/get-screen-scaling/4755
This extension method returns the scaling of the given screen. System.Windows.Forms { using. System.Drawing; using. System.Runtime.InteropServices; / /. Extends the see cref=System.Windows.Forms.Screen/ class. ScreenExtensions { / /. Returns the scaling of the given screen. The screen which scaling should be given back. /param. The type of dpi that should be given back. /param. Gives the horizontal scaling back (in dpi). /param. Gives the vertical scaling back (in dpi). /param. DpiX, [Out] out. Add/Remov...
C# - Apps: bind RichTextBlock to BBCode
http://dotnet-snippets.com/snippet/apps-bind-richtextblock-to-bbcode/4758
The following BBCode tags are supported:. B ] (without space after the ‘b’) = bold formatted. I] = italic formatted. Color=name] = prints the text in the color ‘name’. Common English color names like red or blue supported, but also RGB code like #FF0090 . P]Paragraph 1[/p][p][b ]bold [i]bold and italic[/b] italic[/i][/p][p][color=red]red[/color] [color=green]green[/color] [color=#F09]RGB color: magenta[/color][/p]. B]Hinweis:[/b] The space after [b must be removed. Windows.UI.Xaml.Controls. Gets the BBCo...
C# - MVC: Create Link-Button
http://dotnet-snippets.com/snippet/mvc-create-link-button/5771
The usage is like the well known @Html extension methods. System.Web.Mvc" /. This extension methods create HTML buttons as Input -elements which navigates with JavaScript to the given URL respectively Action/Controller. The usage is like the well known @Html extension methods. Returns an input-element as a button with the given content. It navigates with JavaScript to the given action. HtmlHelper helper, string. UrlHelper(helper.ViewContext.RequestContext); return. HtmlHelper helper, string. String.C...
C# - Apps: launch file or uri
http://dotnet-snippets.com/snippet/apps-launch-file-or-uri/4757
Apps: launch file or uri. It is possible to launch a file or an uri in Windows Apps. The file must be given as a standard StorageFile object. The uri can use any common or app specific protocol. Await Launcher.LaunchFileAsync(myStorageFile); await Launcher.LaunchUriAsync( new. Read and Write INI Files. Loads an embedded resource file of the calling assembly. Check if file is in use. Filecopy via Windows Shell Dialogue. Give file an attribute. Read single attribute from file. Searching for files using LINQ.
C# - UWP: What's available?
http://dotnet-snippets.com/snippet/uwp-whats-available/5763
Microsoft give us new static methods to check if something is available before calling it. B]Hint:[/b] The given namespace contains also some other classes which can be helpful for self written class libraries." /. You can share the most of your code in the new UWP. But not every class will work properly on every plattform, like the Gpio classes which will only work with the required Hardware. Microsoft give us new static methods to check if something is available before calling it. UWP: Color of Titlebar.
TOTAL PAGES IN THIS WEBSITE
20
C# - Einfaches LINQ-Funktionen
https://dotnet-snippets.de/snippet/einfaches-linq-funktionen/7981
Zu diesem Zwecke habe ich mir einige eigene LINQ-Artige Funktionen entwickelt. Der Code sollte selbsterklärend sein." /. Veröffentlicht von Thomas Roskop. Ich verwende häufig LINQ, deshalb finde ich es auch sehr schade, dass es unter Mono nicht einsetzbar ist. :(. Zu diesem Zwecke habe ich mir einige eigene LINQ-Artige Funktionen entwickelt. Der Code sollte selbsterklärend sein. Snippet in VB übersetzen. Abgeleitete Funktionen bekommen einen einen Wert vom Typen T. QueryServiceFunc T (T value, int. IEnum...
C# - Escapesequenzen direkt in C#
https://dotnet-snippets.de/snippet/escapesequenzen-direkt-in-c/7977
220;ber den Nutzen des Features kann man sich sicher streiten." /. Escapesequenzen direkt in C#. Das Snippet soll einfach mal zeigen das C# auch seltsames Zeug drauf hat. Escapesequenzen werden teilweise auch direkt innerhalb der Programmiersprache als entsprechendes Zeichen interpretiert. Das Snippet zeigt einfach mal ein kleines Beispiel. 220;ber den Nutzen des Features kann man sich sicher streiten. Snippet in VB übersetzen. U0078 = Wert der Variablen x. Console.WriteLine(x); var.
C# - DateTime - To Unix Time
https://dotnet-snippets.de/snippet/datetime-to-unix-time/7985
Die Benutzung ist ganz simpel:. Code]var d = DateTime.Now;. Long sec = d.ToUnixTime(); / Sekunden seit dem 01.01.1970[/code]" /. DateTime - To Unix Time. Veröffentlicht von Thomas Roskop. Dieser Code versucht die gegebene Datumsangabe in UNIX-Zeit zu verwandeln. Die Benutzung ist ganz simpel:. Var d = DateTime.Now;. Long sec = d.ToUnixTime(); / Sekunden seit dem 01.01.1970. Snippet in VB übersetzen. Hängt sich als Erweiterung an den Typen. DateTime dateTime) { return. Um hier zu kommentieren!
VB - Generic struct<->byte[] Marshalling
https://dotnet-snippets.de/snippet/generic-struct-byte-marshalling/7975
Generic struct - byte[] Marshalling. A very small class that offers generic methods for marshalling byte arrays to structures and backwards. Structures must be signed as sequential by StructLayout attribute. Snippet in C# übersetzen. System.Runtime.InteropServices Public. StructureType.StructLayoutAttribute.Value LayoutKind.Sequential Then. ArgumentException( The generic type parameter TStructure must be sequential, but was not! ByteArray(structureSize - 1) As. Um hier zu kommentieren! List all controls ...
VB - Fluent IsBetween extension method
https://dotnet-snippets.de/snippet/fluent-isbetween-extension-method/7976
An example to use this extension method:. X is between 0 and 5! Fluent IsBetween extension method. This snippet offers an extension method for fluent is between comparison for integers. You can simply replace integer by any other numeric type, making it generic would make it not being a snippet anymore. An example to use this extension method:. X is between 0 and 5! Snippet in C# übersetzen. System.Runtime.CompilerServices Public. ComparisonExtensions summary Call .And() on the result! Schrieb am 01....
C# - Befehlszeilenargumente verwenden
https://dotnet-snippets.de/snippet/befehlszeilenargumente-verwenden/7984
Das arbeiten mit diesen Befehlszeilenargumenten ist nicht schwer, manchmal aber etwas viel Tiparbeit. Deshalb habe ich diese beiden unteren Klassen geschrieben, die die Arbeit vereinfachen sollen. Die Klassen sollten selbsterklärend sein." /. Veröffentlicht von Thomas Roskop. Manchmal ist es sehr praktisch, wenn man einer Anwendung alles notwendige per Befehlszeile. Das arbeiten mit diesen Befehlszeilenargumenten ist nicht schwer, manchmal aber etwas viel Tiparbeit. Snippet in VB übersetzen. Normal = ite...
C# - Liste in Gruppen sortieren.
https://dotnet-snippets.de/snippet/liste-in-gruppen-sortieren/6971
Für weitere Informationen, einfach den Source-Code mit den Kommentaren anschauen." /. Liste in Gruppen sortieren. Veröffentlicht von Thomas Roskop. Dieser Code erlaubt es eine Liste so zu verarbeiten, dass immer mehrere Werte (Anzahl vorgegeben: groupSize. So gepackt werden, dass Sie zusammen passen. Für weitere Informationen, einfach den Source-Code mit den Kommentaren anschauen. Snippet in VB übersetzen. Speicher-effiziente Ordnung von Objekten aus einer Liste in ein 2-dimensionales Array. I = 0; i r&#...
C# - MVC: Link-Button erstellen
https://dotnet-snippets.de/snippet/mvc-link-button-erstellen/7982
Der Aufruf erfolgt wie gewohnt über die @Html-Eigenschaft und den jeweiligen Methoden Namen mit Parametern. System.Web.Mvc" /. Diese Erweiterungsmethoden rendern Buttons die zur angegebenen URL bzw. Action/Controller führen. Der Aufruf erfolgt wie gewohnt über die @Html-Eigenschaft und den jeweiligen Methoden Namen mit Parametern. Snippet in VB übersetzen. Rendert ein <input>-Element Button der mittels JavaScript zur angegebenen Action navigiert. Der anzuzeigende Inhalt in dem Button. /param. Der anzuzei...
C# - Einfaches Singleton-Pattern
https://dotnet-snippets.de/snippet/einfaches-singleton-pattern/6973
Implementierung eines einfaches Singleton-Pattern. Snippet in VB übersetzen. Singleton() {} / Dein Code hier. Singleton Instance { get. LazyValue; } } private. Lazy Singleton lazy = new. Lazy Singleton = new. Singleton() ; }. 2 Kommentare zum Snippet. Schrieb am 20.06.2015. Verwende ich auch oft aber braucht man den teil () = new Singleton() wirklich? Schrieb am 22.06.2015. Um hier zu kommentieren! Code Snippets for the Gang for Four (GOF) Design Patterns. Vorlage für Singleton Pattern.
C# - Eine verzögerte Erstellung eines Objektes
https://dotnet-snippets.de/snippet/eine-verzoegerte-erstellung-eines-objektes/7980
Das bedeutet, dass sich das Verhalten des Codes den Laufzeitbedingungen anpasst. Dies ist vor allem dann nützlich, wenn der Konstruktor des Objektes sehr rechenintensiv oder speicherintensiv ist. Die Verwendung des Codes ist ganz einfach, es gibt zwei Möglichkeiten:. Erstellt eine RLazyInit-Instanz für ein Objekt mit einem Konstruktor ohne Parameter. RLazyInit Te v = RLazyInit Te .Create Te ();. Erstellt eine RLazyInit-Instanz für ein Objekt mit einem Konstruktor mit Parametern. If( current = null) {.
TOTAL LINKS TO THIS WEBSITE
53
Dotnet SAS : Editeur de logiciels en ligne – Nantes – Dotnet SAS : Editeur de logiciels en ligne – Nantes
A propos de nous. Le mot du CEO. Dotnet SAS : Editeur de logiciels en ligne - Nantes. Dotnet SAS : Editeur de logiciels en ligne - Nantes. DotNet est une société Nantaise de développements de logiciels en ligne à destination des TPEs, PMEs pour leur faciliter le quotien et leur gestion. DotNet est une société Nantaise spécialisée dans l’édition de logiciels en ligne. DotNet recrute en permanence des développeurs PHP pour développer nos sites internet et nos activités online. A propos de nous.
dotnet-seminare.de
Bitte geben Sie ein Stichwort ein. Ihr freundlicher und kompetenter IT-Dienstleister aus dem Norden. Theorie und Praxis - lernen für den Erfolg. Die Entwicklung von Software hat sich in den letzten Jahren verändert. Die Ansprüche sind gestiegen und die Web- und Internet-Technologien werden immer bedeutender. Mit unseren Seminaren rüsten wir Sie für heute und für die Zukunft. Wir lassen Sie in der Praxis nicht im Stich. K2IT Gesellschaft für Informationstechnik mbH. 040 / 632 811 80.
.NET Share
Friday, April 6, 2012. SL4A Fast Track Android Software Development. Library for providing web service on an Android device. Second tier is the user inteface tier using HTML JavaScript JQuery. JQuery plugin for serializing HTML forms to JSON. The Python script visitlogws.py manages the HTML scripts to be displayed to user using droid.webViewShow. Posted by Alex Wijoyo. Monday, April 19, 2010. Decrypt SQL 2005 long stored functions (scalar, inline table-valued, multi statement table-valued). Or any other ...
dotnet-sharepoint-regensburg.de
Default Parallels Plesk Panel Page
Web Server's Default Page. This page is generated by Parallels Plesk Panel. The leading hosting automation software. You see this page because there is no Web site at this address. You can do the following:. For more information please contact @adminemail@. Lets you run Windows on any Intel-based Mac without rebooting! The best solution for running Windows, Linux, or any of many other operating systems alongside OS X. The most efficient server virtualization technology.
Home:ASP.NET,C#.NET,VB.NET,JQuery,JavaScript,Gridview,SQL Server,Ajax,jQuery Plugins,jQuery UI,SSRS,XML,HTML,jQuery demos,code snippet examples
See complete site directory. How to Create Popup Window Form in C# and how to get popup form value on Main Form. Here I will explain how to create popup windows form in c# and how to get popup form value on main form. In previous article I explained Input Box Popup in C#. Input Box Popup in c#. Here I will explain how to use VB input box popup window in c#. In previous article I explained How to convert Numeric to word. ASCII control characters (character code 0-31). The first 32 characters in the ASCII-...
dotnet-snippets.com
Snippet of the day. VB - Get all email addresses from text or string. This function can filter all email addresses out of a string and saves them into a List(Of String) a . Snippets - all languages (Page 1/11). LINQ: Flatten a hierarchy. Xamarin Forms: WebView with navigation to Browser. Xamarin Forms: Create Regex Instance in XAML. UWP: Win2D Measure string size. RingEnumerator - Enumerate a list in a circle. FolderBrowserDialog with Vista Style. WPF Markup Extension for enum values.
dotnet-snippets.de
C# - Symbolischen Link erstellen, löschen und auslesen. Ab Windows Vista (Windows Server 2008) kann man so genannte symbolische Links erstellen. Der Vorteil gegenüber normalen Links ist der, das die Pfade relativ und auf andere Laufwerke verweisen können. Man muss der . Snippets - alle Sprachen (Seite 1/99). VBNet: Parameter einer SQLite-Abfrage sehen. Windows Aufgabenplaner / TaskScheduler benutzen. Text in Console mittig zentrieren. Leere Unterverzeichnisse löschen. Formen mehrmals öffnen.
dotnet-software-development.com
Welcome!
Welcome to www.dotnet-software-development.com. Our site is under construction. Keep checking back for improvements, additions, changes. Your comments and suggestions!
Dot Net Tutorials, Dot Net Examples, Dot Net Helps
Dot Net Tutorials, Dot Net Examples, Dot Net Helps. Gadget by Dot Net Spiders. Saturday, November 27, 2010. Difference between Properties and Indexers : Properties Vs Indexers. The general form of declaring a property is as follows. The first part of the syntax looks quite similar to a field declaration and second part consists of a get accessor and a set accessor. Get { / Get codes goes here } set { / Set codes goes here }. Where access modifier can be private, public, protected or internal. The ret...
dotnet-stammtisch-rheinhessen.de
.NET Stammtisch Rheinhessen > Getting Started
Hier geht es los. Wenn wir uns anschauen. Welche Usergroups und Stammtische es in Rheinhessen für Entwickler und Berater rund um das Thema .NET Entwicklung von Windows und Web Anwendungen gibt, sieht man nur eines;. Einen weißen Fleck! Und dieser Fleck muss weg! Genau das haben wir (wir, das sind Hans-Peter Schelian. Uns auch gedacht und haben kurzerhand den .NET Stammtisch Rheinhessen gegründet. Und für wen ist dieser Stammtisch? Wer einen XING Account hat, kann direkt der XING Gruppe.
Microsoft CRM Customization
Thursday, August 21, 2008. Microsoft CRM 4.0 : Manually Execute Workflow Throughout the Entities. It's , difinitely, do the same thing but what if you have too many records to be executed workflow over? You will get to do repeatly all these steps - select all records representing on grid then execute workflow then move to next set. This tool uses jquery library to handle AJAX request to custom web service. You not need to modify anything on custom web service. Here are screenshots of this tool.