我有两个字符串,需要在不检查空行的情况下比较它们......
第一个字符串
CREATE OR REPLACE PROCEDURE "HELL_"
as
begin
dbms_output.put_line('Hello!');
end;
第二串
CREATE OR REPLACE PROCEDURE "USER1"."HELL_"
as
begin
dbms_output.put_line('Hello!');
end;
我正在使用的代码:
string text1 = "";
string text2 = "";
if (text1.Equals(text2 ))
MessageBox.Show("same");
//no Exception
else
{
MessageBox.Show("not");
}