在ASP.NET C#应用程序中,我注意到为了使用Regex和StringBuilder,我必须同时使用
using System.Text;
using System.Text.RegularExpressions;
从简单的角度来看,我认为using System.Text可能包括RegularExpressions,但两者都是必要的。那两个有什么区别呢?
可能重复:
__construct函数和类名称相同的函数之间有什么区别吗?
class foo {
function foo ($something){
echo "I see ".$something." argument";
}
}
class bar {
function __construct ($something){
echo "<br />
I see ".$something." argument again";