1Class BinaryOperatorOr
2    Inherits IntrinsicOperatorTests
3    Shared Function Main As Integer
4        Try
5#If Boolean_ERRORS
6            M(bool Or bool, "bool Or bool")
7#End If
8#If Boolean_ERRORS
9            M(bool Or b, "bool Or b")
10#End If
11#If Boolean_ERRORS
12            M(bool Or sb, "bool Or sb")
13#End If
14#If Boolean_ERRORS
15            M(bool Or s, "bool Or s")
16#End If
17#If Boolean_ERRORS
18            M(bool Or us, "bool Or us")
19#End If
20#If Boolean_ERRORS
21            M(bool Or i, "bool Or i")
22#End If
23#If Boolean_ERRORS
24            M(bool Or ui, "bool Or ui")
25#End If
26#If Boolean_ERRORS
27            M(bool Or l, "bool Or l")
28#End If
29#If Boolean_ERRORS
30            M(bool Or ul, "bool Or ul")
31#End If
32#If Boolean_ERRORS
33            M(bool Or dec, "bool Or dec")
34#End If
35#If Boolean_ERRORS
36            M(bool Or sng, "bool Or sng")
37#End If
38#If Boolean_ERRORS
39            M(bool Or dbl, "bool Or dbl")
40#End If
41#If Boolean_ERRORS
42            M(bool Or chr, "bool Or chr")
43#End If
44#If Boolean_ERRORS
45            M(bool Or str, "bool Or str")
46#End If
47#If Boolean_ERRORS
48            M(bool Or dt, "bool Or dt")
49#End If
50#If Boolean_ERRORS
51            M(bool Or dbnull, "bool Or dbnull")
52#End If
53#If Boolean_ERRORS
54            M(bool Or obj, "bool Or obj")
55#End If
56#If Byte_ERRORS
57            M(b Or bool, "b Or bool")
58#End If
59#If Byte_ERRORS
60            M(b Or b, "b Or b")
61#End If
62#If Byte_ERRORS
63            M(b Or sb, "b Or sb")
64#End If
65#If Byte_ERRORS
66            M(b Or s, "b Or s")
67#End If
68            expected_tc = TypeCode.UInt16
69            M(b Or us, "b Or us")
70#If Byte_ERRORS
71            M(b Or i, "b Or i")
72#End If
73#If Byte_ERRORS
74            M(b Or ui, "b Or ui")
75#End If
76#If Byte_ERRORS
77            M(b Or l, "b Or l")
78#End If
79#If Byte_ERRORS
80            M(b Or ul, "b Or ul")
81#End If
82#If Byte_ERRORS
83            M(b Or dec, "b Or dec")
84#End If
85#If Byte_ERRORS
86            M(b Or sng, "b Or sng")
87#End If
88#If Byte_ERRORS
89            M(b Or dbl, "b Or dbl")
90#End If
91#If Byte_ERRORS
92            M(b Or chr, "b Or chr")
93#End If
94#If Byte_ERRORS
95            M(b Or str, "b Or str")
96#End If
97#If Byte_ERRORS
98            M(b Or dt, "b Or dt")
99#End If
100#If Byte_ERRORS
101            M(b Or dbnull, "b Or dbnull")
102#End If
103#If Byte_ERRORS
104            M(b Or obj, "b Or obj")
105#End If
106#If SByte_ERRORS
107            M(sb Or bool, "sb Or bool")
108#End If
109#If SByte_ERRORS
110            M(sb Or b, "sb Or b")
111#End If
112#If SByte_ERRORS
113            M(sb Or sb, "sb Or sb")
114#End If
115#If SByte_ERRORS
116            M(sb Or s, "sb Or s")
117#End If
118#If SByte_ERRORS
119            M(sb Or us, "sb Or us")
120#End If
121#If SByte_ERRORS
122            M(sb Or i, "sb Or i")
123#End If
124#If SByte_ERRORS
125            M(sb Or ui, "sb Or ui")
126#End If
127#If SByte_ERRORS
128            M(sb Or l, "sb Or l")
129#End If
130#If SByte_ERRORS
131            M(sb Or ul, "sb Or ul")
132#End If
133#If SByte_ERRORS
134            M(sb Or dec, "sb Or dec")
135#End If
136#If SByte_ERRORS
137            M(sb Or sng, "sb Or sng")
138#End If
139#If SByte_ERRORS
140            M(sb Or dbl, "sb Or dbl")
141#End If
142#If SByte_ERRORS
143            M(sb Or chr, "sb Or chr")
144#End If
145#If SByte_ERRORS
146            M(sb Or str, "sb Or str")
147#End If
148#If SByte_ERRORS
149            M(sb Or dt, "sb Or dt")
150#End If
151#If SByte_ERRORS
152            M(sb Or dbnull, "sb Or dbnull")
153#End If
154#If SByte_ERRORS
155            M(sb Or obj, "sb Or obj")
156#End If
157#If Int16_ERRORS
158            M(s Or bool, "s Or bool")
159#End If
160#If Int16_ERRORS
161            M(s Or b, "s Or b")
162#End If
163#If Int16_ERRORS
164            M(s Or sb, "s Or sb")
165#End If
166#If Int16_ERRORS
167            M(s Or s, "s Or s")
168#End If
169#If Int16_ERRORS
170            M(s Or us, "s Or us")
171#End If
172#If Int16_ERRORS
173            M(s Or i, "s Or i")
174#End If
175#If Int16_ERRORS
176            M(s Or ui, "s Or ui")
177#End If
178#If Int16_ERRORS
179            M(s Or l, "s Or l")
180#End If
181#If Int16_ERRORS
182            M(s Or ul, "s Or ul")
183#End If
184#If Int16_ERRORS
185            M(s Or dec, "s Or dec")
186#End If
187#If Int16_ERRORS
188            M(s Or sng, "s Or sng")
189#End If
190#If Int16_ERRORS
191            M(s Or dbl, "s Or dbl")
192#End If
193#If Int16_ERRORS
194            M(s Or chr, "s Or chr")
195#End If
196#If Int16_ERRORS
197            M(s Or str, "s Or str")
198#End If
199#If Int16_ERRORS
200            M(s Or dt, "s Or dt")
201#End If
202#If Int16_ERRORS
203            M(s Or dbnull, "s Or dbnull")
204#End If
205#If Int16_ERRORS
206            M(s Or obj, "s Or obj")
207#End If
208#If UInt16_ERRORS
209            M(us Or bool, "us Or bool")
210#End If
211            expected_tc = TypeCode.UInt16
212            M(us Or b, "us Or b")
213#If UInt16_ERRORS
214            M(us Or sb, "us Or sb")
215#End If
216#If UInt16_ERRORS
217            M(us Or s, "us Or s")
218#End If
219            expected_tc = TypeCode.UInt16
220            M(us Or us, "us Or us")
221#If UInt16_ERRORS
222            M(us Or i, "us Or i")
223#End If
224#If UInt16_ERRORS
225            M(us Or ui, "us Or ui")
226#End If
227#If UInt16_ERRORS
228            M(us Or l, "us Or l")
229#End If
230#If UInt16_ERRORS
231            M(us Or ul, "us Or ul")
232#End If
233#If UInt16_ERRORS
234            M(us Or dec, "us Or dec")
235#End If
236#If UInt16_ERRORS
237            M(us Or sng, "us Or sng")
238#End If
239#If UInt16_ERRORS
240            M(us Or dbl, "us Or dbl")
241#End If
242#If UInt16_ERRORS
243            M(us Or chr, "us Or chr")
244#End If
245#If UInt16_ERRORS
246            M(us Or str, "us Or str")
247#End If
248#If UInt16_ERRORS
249            M(us Or dt, "us Or dt")
250#End If
251#If UInt16_ERRORS
252            M(us Or dbnull, "us Or dbnull")
253#End If
254#If UInt16_ERRORS
255            M(us Or obj, "us Or obj")
256#End If
257#If Int32_ERRORS
258            M(i Or bool, "i Or bool")
259#End If
260#If Int32_ERRORS
261            M(i Or b, "i Or b")
262#End If
263#If Int32_ERRORS
264            M(i Or sb, "i Or sb")
265#End If
266#If Int32_ERRORS
267            M(i Or s, "i Or s")
268#End If
269#If Int32_ERRORS
270            M(i Or us, "i Or us")
271#End If
272#If Int32_ERRORS
273            M(i Or i, "i Or i")
274#End If
275#If Int32_ERRORS
276            M(i Or ui, "i Or ui")
277#End If
278#If Int32_ERRORS
279            M(i Or l, "i Or l")
280#End If
281#If Int32_ERRORS
282            M(i Or ul, "i Or ul")
283#End If
284#If Int32_ERRORS
285            M(i Or dec, "i Or dec")
286#End If
287#If Int32_ERRORS
288            M(i Or sng, "i Or sng")
289#End If
290#If Int32_ERRORS
291            M(i Or dbl, "i Or dbl")
292#End If
293#If Int32_ERRORS
294            M(i Or chr, "i Or chr")
295#End If
296#If Int32_ERRORS
297            M(i Or str, "i Or str")
298#End If
299#If Int32_ERRORS
300            M(i Or dt, "i Or dt")
301#End If
302#If Int32_ERRORS
303            M(i Or dbnull, "i Or dbnull")
304#End If
305#If Int32_ERRORS
306            M(i Or obj, "i Or obj")
307#End If
308#If UInt32_ERRORS
309            M(ui Or bool, "ui Or bool")
310#End If
311#If UInt32_ERRORS
312            M(ui Or b, "ui Or b")
313#End If
314#If UInt32_ERRORS
315            M(ui Or sb, "ui Or sb")
316#End If
317#If UInt32_ERRORS
318            M(ui Or s, "ui Or s")
319#End If
320#If UInt32_ERRORS
321            M(ui Or us, "ui Or us")
322#End If
323#If UInt32_ERRORS
324            M(ui Or i, "ui Or i")
325#End If
326#If UInt32_ERRORS
327            M(ui Or ui, "ui Or ui")
328#End If
329#If UInt32_ERRORS
330            M(ui Or l, "ui Or l")
331#End If
332#If UInt32_ERRORS
333            M(ui Or ul, "ui Or ul")
334#End If
335#If UInt32_ERRORS
336            M(ui Or dec, "ui Or dec")
337#End If
338#If UInt32_ERRORS
339            M(ui Or sng, "ui Or sng")
340#End If
341#If UInt32_ERRORS
342            M(ui Or dbl, "ui Or dbl")
343#End If
344#If UInt32_ERRORS
345            M(ui Or chr, "ui Or chr")
346#End If
347#If UInt32_ERRORS
348            M(ui Or str, "ui Or str")
349#End If
350#If UInt32_ERRORS
351            M(ui Or dt, "ui Or dt")
352#End If
353#If UInt32_ERRORS
354            M(ui Or dbnull, "ui Or dbnull")
355#End If
356#If UInt32_ERRORS
357            M(ui Or obj, "ui Or obj")
358#End If
359#If Int64_ERRORS
360            M(l Or bool, "l Or bool")
361#End If
362#If Int64_ERRORS
363            M(l Or b, "l Or b")
364#End If
365#If Int64_ERRORS
366            M(l Or sb, "l Or sb")
367#End If
368#If Int64_ERRORS
369            M(l Or s, "l Or s")
370#End If
371#If Int64_ERRORS
372            M(l Or us, "l Or us")
373#End If
374#If Int64_ERRORS
375            M(l Or i, "l Or i")
376#End If
377#If Int64_ERRORS
378            M(l Or ui, "l Or ui")
379#End If
380#If Int64_ERRORS
381            M(l Or l, "l Or l")
382#End If
383#If Int64_ERRORS
384            M(l Or ul, "l Or ul")
385#End If
386#If Int64_ERRORS
387            M(l Or dec, "l Or dec")
388#End If
389#If Int64_ERRORS
390            M(l Or sng, "l Or sng")
391#End If
392#If Int64_ERRORS
393            M(l Or dbl, "l Or dbl")
394#End If
395#If Int64_ERRORS
396            M(l Or chr, "l Or chr")
397#End If
398#If Int64_ERRORS
399            M(l Or str, "l Or str")
400#End If
401#If Int64_ERRORS
402            M(l Or dt, "l Or dt")
403#End If
404#If Int64_ERRORS
405            M(l Or dbnull, "l Or dbnull")
406#End If
407#If Int64_ERRORS
408            M(l Or obj, "l Or obj")
409#End If
410#If UInt64_ERRORS
411            M(ul Or bool, "ul Or bool")
412#End If
413#If UInt64_ERRORS
414            M(ul Or b, "ul Or b")
415#End If
416#If UInt64_ERRORS
417            M(ul Or sb, "ul Or sb")
418#End If
419#If UInt64_ERRORS
420            M(ul Or s, "ul Or s")
421#End If
422#If UInt64_ERRORS
423            M(ul Or us, "ul Or us")
424#End If
425#If UInt64_ERRORS
426            M(ul Or i, "ul Or i")
427#End If
428#If UInt64_ERRORS
429            M(ul Or ui, "ul Or ui")
430#End If
431#If UInt64_ERRORS
432            M(ul Or l, "ul Or l")
433#End If
434#If UInt64_ERRORS
435            M(ul Or ul, "ul Or ul")
436#End If
437#If UInt64_ERRORS
438            M(ul Or dec, "ul Or dec")
439#End If
440#If UInt64_ERRORS
441            M(ul Or sng, "ul Or sng")
442#End If
443#If UInt64_ERRORS
444            M(ul Or dbl, "ul Or dbl")
445#End If
446#If UInt64_ERRORS
447            M(ul Or chr, "ul Or chr")
448#End If
449#If UInt64_ERRORS
450            M(ul Or str, "ul Or str")
451#End If
452#If UInt64_ERRORS
453            M(ul Or dt, "ul Or dt")
454#End If
455#If UInt64_ERRORS
456            M(ul Or dbnull, "ul Or dbnull")
457#End If
458#If UInt64_ERRORS
459            M(ul Or obj, "ul Or obj")
460#End If
461#If Decimal_ERRORS
462            M(dec Or bool, "dec Or bool")
463#End If
464#If Decimal_ERRORS
465            M(dec Or b, "dec Or b")
466#End If
467#If Decimal_ERRORS
468            M(dec Or sb, "dec Or sb")
469#End If
470#If Decimal_ERRORS
471            M(dec Or s, "dec Or s")
472#End If
473#If Decimal_ERRORS
474            M(dec Or us, "dec Or us")
475#End If
476#If Decimal_ERRORS
477            M(dec Or i, "dec Or i")
478#End If
479#If Decimal_ERRORS
480            M(dec Or ui, "dec Or ui")
481#End If
482#If Decimal_ERRORS
483            M(dec Or l, "dec Or l")
484#End If
485#If Decimal_ERRORS
486            M(dec Or ul, "dec Or ul")
487#End If
488#If Decimal_ERRORS
489            M(dec Or dec, "dec Or dec")
490#End If
491#If Decimal_ERRORS
492            M(dec Or sng, "dec Or sng")
493#End If
494#If Decimal_ERRORS
495            M(dec Or dbl, "dec Or dbl")
496#End If
497#If Decimal_ERRORS
498            M(dec Or chr, "dec Or chr")
499#End If
500#If Decimal_ERRORS
501            M(dec Or str, "dec Or str")
502#End If
503#If Decimal_ERRORS
504            M(dec Or dt, "dec Or dt")
505#End If
506#If Decimal_ERRORS
507            M(dec Or dbnull, "dec Or dbnull")
508#End If
509#If Decimal_ERRORS
510            M(dec Or obj, "dec Or obj")
511#End If
512#If Single_ERRORS
513            M(sng Or bool, "sng Or bool")
514#End If
515#If Single_ERRORS
516            M(sng Or b, "sng Or b")
517#End If
518#If Single_ERRORS
519            M(sng Or sb, "sng Or sb")
520#End If
521#If Single_ERRORS
522            M(sng Or s, "sng Or s")
523#End If
524#If Single_ERRORS
525            M(sng Or us, "sng Or us")
526#End If
527#If Single_ERRORS
528            M(sng Or i, "sng Or i")
529#End If
530#If Single_ERRORS
531            M(sng Or ui, "sng Or ui")
532#End If
533#If Single_ERRORS
534            M(sng Or l, "sng Or l")
535#End If
536#If Single_ERRORS
537            M(sng Or ul, "sng Or ul")
538#End If
539#If Single_ERRORS
540            M(sng Or dec, "sng Or dec")
541#End If
542#If Single_ERRORS
543            M(sng Or sng, "sng Or sng")
544#End If
545#If Single_ERRORS
546            M(sng Or dbl, "sng Or dbl")
547#End If
548#If Single_ERRORS
549            M(sng Or chr, "sng Or chr")
550#End If
551#If Single_ERRORS
552            M(sng Or str, "sng Or str")
553#End If
554#If Single_ERRORS
555            M(sng Or dt, "sng Or dt")
556#End If
557#If Single_ERRORS
558            M(sng Or dbnull, "sng Or dbnull")
559#End If
560#If Single_ERRORS
561            M(sng Or obj, "sng Or obj")
562#End If
563#If Double_ERRORS
564            M(dbl Or bool, "dbl Or bool")
565#End If
566#If Double_ERRORS
567            M(dbl Or b, "dbl Or b")
568#End If
569#If Double_ERRORS
570            M(dbl Or sb, "dbl Or sb")
571#End If
572#If Double_ERRORS
573            M(dbl Or s, "dbl Or s")
574#End If
575#If Double_ERRORS
576            M(dbl Or us, "dbl Or us")
577#End If
578#If Double_ERRORS
579            M(dbl Or i, "dbl Or i")
580#End If
581#If Double_ERRORS
582            M(dbl Or ui, "dbl Or ui")
583#End If
584#If Double_ERRORS
585            M(dbl Or l, "dbl Or l")
586#End If
587#If Double_ERRORS
588            M(dbl Or ul, "dbl Or ul")
589#End If
590#If Double_ERRORS
591            M(dbl Or dec, "dbl Or dec")
592#End If
593#If Double_ERRORS
594            M(dbl Or sng, "dbl Or sng")
595#End If
596#If Double_ERRORS
597            M(dbl Or dbl, "dbl Or dbl")
598#End If
599#If Double_ERRORS
600            M(dbl Or chr, "dbl Or chr")
601#End If
602#If Double_ERRORS
603            M(dbl Or str, "dbl Or str")
604#End If
605#If Double_ERRORS
606            M(dbl Or dt, "dbl Or dt")
607#End If
608#If Double_ERRORS
609            M(dbl Or dbnull, "dbl Or dbnull")
610#End If
611#If Double_ERRORS
612            M(dbl Or obj, "dbl Or obj")
613#End If
614#If Char_ERRORS
615            M(chr Or bool, "chr Or bool")
616#End If
617#If Char_ERRORS
618            M(chr Or b, "chr Or b")
619#End If
620#If Char_ERRORS
621            M(chr Or sb, "chr Or sb")
622#End If
623#If Char_ERRORS
624            M(chr Or s, "chr Or s")
625#End If
626#If Char_ERRORS
627            M(chr Or us, "chr Or us")
628#End If
629#If Char_ERRORS
630            M(chr Or i, "chr Or i")
631#End If
632#If Char_ERRORS
633            M(chr Or ui, "chr Or ui")
634#End If
635#If Char_ERRORS
636            M(chr Or l, "chr Or l")
637#End If
638#If Char_ERRORS
639            M(chr Or ul, "chr Or ul")
640#End If
641#If Char_ERRORS
642            M(chr Or dec, "chr Or dec")
643#End If
644#If Char_ERRORS
645            M(chr Or sng, "chr Or sng")
646#End If
647#If Char_ERRORS
648            M(chr Or dbl, "chr Or dbl")
649#End If
650#If Char_ERRORS
651            M(chr Or chr, "chr Or chr")
652#End If
653#If Char_ERRORS
654            M(chr Or str, "chr Or str")
655#End If
656#If Char_ERRORS
657            M(chr Or dt, "chr Or dt")
658#End If
659#If Char_ERRORS
660            M(chr Or dbnull, "chr Or dbnull")
661#End If
662#If Char_ERRORS
663            M(chr Or obj, "chr Or obj")
664#End If
665#If String_ERRORS
666            M(str Or bool, "str Or bool")
667#End If
668#If String_ERRORS
669            M(str Or b, "str Or b")
670#End If
671#If String_ERRORS
672            M(str Or sb, "str Or sb")
673#End If
674#If String_ERRORS
675            M(str Or s, "str Or s")
676#End If
677#If String_ERRORS
678            M(str Or us, "str Or us")
679#End If
680#If String_ERRORS
681            M(str Or i, "str Or i")
682#End If
683#If String_ERRORS
684            M(str Or ui, "str Or ui")
685#End If
686#If String_ERRORS
687            M(str Or l, "str Or l")
688#End If
689#If String_ERRORS
690            M(str Or ul, "str Or ul")
691#End If
692#If String_ERRORS
693            M(str Or dec, "str Or dec")
694#End If
695#If String_ERRORS
696            M(str Or sng, "str Or sng")
697#End If
698#If String_ERRORS
699            M(str Or dbl, "str Or dbl")
700#End If
701#If String_ERRORS
702            M(str Or chr, "str Or chr")
703#End If
704#If String_ERRORS
705            M(str Or str, "str Or str")
706#End If
707#If String_ERRORS
708            M(str Or dt, "str Or dt")
709#End If
710#If String_ERRORS
711            M(str Or dbnull, "str Or dbnull")
712#End If
713#If String_ERRORS
714            M(str Or obj, "str Or obj")
715#End If
716#If DateTime_ERRORS
717            M(dt Or bool, "dt Or bool")
718#End If
719#If DateTime_ERRORS
720            M(dt Or b, "dt Or b")
721#End If
722#If DateTime_ERRORS
723            M(dt Or sb, "dt Or sb")
724#End If
725#If DateTime_ERRORS
726            M(dt Or s, "dt Or s")
727#End If
728#If DateTime_ERRORS
729            M(dt Or us, "dt Or us")
730#End If
731#If DateTime_ERRORS
732            M(dt Or i, "dt Or i")
733#End If
734#If DateTime_ERRORS
735            M(dt Or ui, "dt Or ui")
736#End If
737#If DateTime_ERRORS
738            M(dt Or l, "dt Or l")
739#End If
740#If DateTime_ERRORS
741            M(dt Or ul, "dt Or ul")
742#End If
743#If DateTime_ERRORS
744            M(dt Or dec, "dt Or dec")
745#End If
746#If DateTime_ERRORS
747            M(dt Or sng, "dt Or sng")
748#End If
749#If DateTime_ERRORS
750            M(dt Or dbl, "dt Or dbl")
751#End If
752#If DateTime_ERRORS
753            M(dt Or chr, "dt Or chr")
754#End If
755#If DateTime_ERRORS
756            M(dt Or str, "dt Or str")
757#End If
758#If DateTime_ERRORS
759            M(dt Or dt, "dt Or dt")
760#End If
761#If DateTime_ERRORS
762            M(dt Or dbnull, "dt Or dbnull")
763#End If
764#If DateTime_ERRORS
765            M(dt Or obj, "dt Or obj")
766#End If
767#If DBNull_ERRORS
768            M(dbnull Or bool, "dbnull Or bool")
769#End If
770#If DBNull_ERRORS
771            M(dbnull Or b, "dbnull Or b")
772#End If
773#If DBNull_ERRORS
774            M(dbnull Or sb, "dbnull Or sb")
775#End If
776#If DBNull_ERRORS
777            M(dbnull Or s, "dbnull Or s")
778#End If
779#If DBNull_ERRORS
780            M(dbnull Or us, "dbnull Or us")
781#End If
782#If DBNull_ERRORS
783            M(dbnull Or i, "dbnull Or i")
784#End If
785#If DBNull_ERRORS
786            M(dbnull Or ui, "dbnull Or ui")
787#End If
788#If DBNull_ERRORS
789            M(dbnull Or l, "dbnull Or l")
790#End If
791#If DBNull_ERRORS
792            M(dbnull Or ul, "dbnull Or ul")
793#End If
794#If DBNull_ERRORS
795            M(dbnull Or dec, "dbnull Or dec")
796#End If
797#If DBNull_ERRORS
798            M(dbnull Or sng, "dbnull Or sng")
799#End If
800#If DBNull_ERRORS
801            M(dbnull Or dbl, "dbnull Or dbl")
802#End If
803#If DBNull_ERRORS
804            M(dbnull Or chr, "dbnull Or chr")
805#End If
806#If DBNull_ERRORS
807            M(dbnull Or str, "dbnull Or str")
808#End If
809#If DBNull_ERRORS
810            M(dbnull Or dt, "dbnull Or dt")
811#End If
812#If DBNull_ERRORS
813            M(dbnull Or dbnull, "dbnull Or dbnull")
814#End If
815#If DBNull_ERRORS
816            M(dbnull Or obj, "dbnull Or obj")
817#End If
818#If Object_ERRORS
819            M(obj Or bool, "obj Or bool")
820#End If
821#If Object_ERRORS
822            M(obj Or b, "obj Or b")
823#End If
824#If Object_ERRORS
825            M(obj Or sb, "obj Or sb")
826#End If
827#If Object_ERRORS
828            M(obj Or s, "obj Or s")
829#End If
830#If Object_ERRORS
831            M(obj Or us, "obj Or us")
832#End If
833#If Object_ERRORS
834            M(obj Or i, "obj Or i")
835#End If
836#If Object_ERRORS
837            M(obj Or ui, "obj Or ui")
838#End If
839#If Object_ERRORS
840            M(obj Or l, "obj Or l")
841#End If
842#If Object_ERRORS
843            M(obj Or ul, "obj Or ul")
844#End If
845#If Object_ERRORS
846            M(obj Or dec, "obj Or dec")
847#End If
848#If Object_ERRORS
849            M(obj Or sng, "obj Or sng")
850#End If
851#If Object_ERRORS
852            M(obj Or dbl, "obj Or dbl")
853#End If
854#If Object_ERRORS
855            M(obj Or chr, "obj Or chr")
856#End If
857#If Object_ERRORS
858            M(obj Or str, "obj Or str")
859#End If
860#If Object_ERRORS
861            M(obj Or dt, "obj Or dt")
862#End If
863#If Object_ERRORS
864            M(obj Or dbnull, "obj Or dbnull")
865#End If
866#If Object_ERRORS
867            M(obj Or obj, "obj Or obj")
868#End If
869        If failures > 0 Then Return 1
870    Catch ex As Exception
871        Console.WriteLine ("Exception: {0}", ex)
872        Return 2
873    End Try
874    Return 0
875    End Function
876End Class
877