J
Jeroen Ceuppens
Hi
I have many classes like A.cs, B.cs, C.cs
A.cs
using System;
using System.Xml;
B.cs
using System;
usings System.IO;
each of them contains several using System...... lines
Can I put on top of each .cs file one using EVERYUNSING so I can every have
all the usings in one file (EVERYUSING)?
A.cs
using EVERYUSING
B.cs
using EVERYUSING
EVERYUSING
using System;
using System.Xml;
usings System.IO;
Thx
Jeroen
I have many classes like A.cs, B.cs, C.cs
A.cs
using System;
using System.Xml;
B.cs
using System;
usings System.IO;
each of them contains several using System...... lines
Can I put on top of each .cs file one using EVERYUNSING so I can every have
all the usings in one file (EVERYUSING)?
A.cs
using EVERYUSING
B.cs
using EVERYUSING
EVERYUSING
using System;
using System.Xml;
usings System.IO;
Thx
Jeroen