I cannot include System.Runtime.Serialization.Formatters.Soap namespace
-
Dear all, I tried to include the above namespace in my new project of Visual C#. I could not do so. Later I tried on two other systems, the same problem. Then I opened a previous project of me, I find that System.Runtime.Serialization.Formatters.Soap namespace is there. Then I tried to include the same namespace by a dummy statement in previous project, I find that I can include the same namespace. What might be the reason ?, I have wasted lot of time and then consult this Message Boards. Thank you
-
Dear all, I tried to include the above namespace in my new project of Visual C#. I could not do so. Later I tried on two other systems, the same problem. Then I opened a previous project of me, I find that System.Runtime.Serialization.Formatters.Soap namespace is there. Then I tried to include the same namespace by a dummy statement in previous project, I find that I can include the same namespace. What might be the reason ?, I have wasted lot of time and then consult this Message Boards. Thank you
You can't do a using statement successfully until the library is included in the list of references at the top of your project in the Solution Explorer. You can't use it until it's part of your project. Christian I have several lifelong friends that are New Yorkers but I have always gravitated toward the weirdo's. - Richard Stringer
-
You can't do a using statement successfully until the library is included in the list of references at the top of your project in the Solution Explorer. You can't use it until it's part of your project. Christian I have several lifelong friends that are New Yorkers but I have always gravitated toward the weirdo's. - Richard Stringer
Thanks for that Mr. Christian.