[Mono-bugs] [Bug 60983][Nor] New - Visual Basic Like Operater broken.
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Thu, 1 Jul 2004 10:33:21 -0400 (EDT)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by ximian@azzmodan.demon.nl.
http://bugzilla.ximian.com/show_bug.cgi?id=60983
--- shadow/60983 2004-07-01 10:33:21.000000000 -0400
+++ shadow/60983.tmp.30614 2004-07-01 10:33:21.000000000 -0400
@@ -0,0 +1,43 @@
+Bug#: 60983
+Product: Mono: Class Libraries
+Version: unspecified
+OS: All
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: System
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: ximian@azzmodan.demon.nl
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Visual Basic Like Operater broken.
+
+Description of Problem: Like Operator is broken.
+
+Steps to reproduce the problem:
+I simply tested this in a console app:
+If "123" Like "123" Then Console.WriteLine("Like 123")
+If "123" Like "###" Then Console.WriteLine("Like ###")
+If "123" Like "???" Then Console.WriteLine("Like ???")
+
+Actual Results:
+Like 123
+
+Expected Results:
+Like 123
+Like ###
+Like ???
+
+How often does this happen?
+Always
+
+Additional Information:
+Seems only a direct comparison works, #?* are what I tested and did not
+work, haven't tried a charlist.
+
+Someone in IRC mentioned it being a problem with:
+StrLike from Microsoft.VisualBasic.CompilerServices.StringType