Benutzer-Werkzeuge

Webseiten-Werkzeuge


scriptstack

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
scriptstack [2025/12/30 17:42]
admin [Models]
scriptstack [2025/12/30 17:42] (aktuell)
admin [Models]
Zeile 226: Zeile 226:
 using ScriptStack.Runtime; using ScriptStack.Runtime;
 using System; using System;
-//using System.Collections; 
-using System.Collections.Generic; 
-using System.Collections.ObjectModel; 
-using System.Data; 
-using System.Data.Common; 
-using System.Linq; 
-using System.Reflection; 
  
 namespace ScriptStack { namespace ScriptStack {
  
     public class Example: Model {     public class Example: Model {
 +    
         private static ReadOnlyCollection < Routine > exportedRoutines;         private static ReadOnlyCollection < Routine > exportedRoutines;
- 
-        private static readonly object _lock = new object(); 
-        private static int _nextHandle = 1; 
- 
-        // Handle -> Connection 
-        private static readonly Dictionary < int, DbConnection > _conns = new Dictionary < int, DbConnection > (); 
  
         public Example() {         public Example() {
Zeile 250: Zeile 238:
                 return;                 return;
  
-            var r = new List < Routine > ();+            var r = new List<Routine>();
  
             r.Add(new Routine(typeof (bool), "std.print", (Type) null, "Ausgabe auf der Konsole erzeugen."));             r.Add(new Routine(typeof (bool), "std.print", (Type) null, "Ausgabe auf der Konsole erzeugen."));
scriptstack.1767112929.txt.gz · Zuletzt geändert: 2025/12/30 17:42 von admin