Adding more namespace in the code file affects performace ?

Posted by Harikrishna on Stack Overflow See other posts from Stack Overflow or by Harikrishna
Published on 2010-05-31T05:50:27Z Indexed on 2010/05/31 5:52 UTC
Read the original article Hit count: 197

Filed under:
|
|
|
|

If we imports more namespace in the code file(cs file) then it affects on perfomance ? Like we should add namespace in the cs file as needed. That is adding more namespace in the cs file affects performance ? Like

using System;
using System.Data.Sql;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using System.Windows.Forms;
using System.Xml;
using System.Data.SqlClient;
using System.ComponentModel;

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET