コード例 #1
0
 public debugService(ref ptr <service> Service = default, @string Name = default, methodArray Method = default)
 {
     this.Service = Service;
     this.Name    = Name;
     this.Method  = Method;
 }
コード例 #2
0
 private static bool Less(this methodArray m, long i, long j)
 {
     return(m[i].Name < m[j].Name);
 }
コード例 #3
0
 private static void Swap(this methodArray m, long i, long j)
 {
     m[i] = m[j];
     m[j] = m[i];
 }
コード例 #4
0
 private static long Len(this methodArray m)
 {
     return(len(m));
 }