- I found the answer and Thank
Hi Peter Ritchie,I've also met this puzzle just now. Could you give me more detailed explanations about that?The case for me is as follows (inside a WebService ):.........[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)][ScriptService]public class EmployeeDataService : DataService{ ...
- Creating my own Methods
Hi,I have a class for data with an overridden ToString() membernamespace Employee{ public class Employee { public string firstName; public string lastName; public string jobTitle; public override string ToString() { return lastName + ", " + firstName; } }}A Form with a listbox for ...
- Why does List<T> not implement ISerializable/IDeserializationCallback?
I was intrigued by a post over at microsoft.public.dotnet.framework. I MSN Live Search'ed for a long time but couldn't find any convincing explanation. I have reproduced the post here. I am also not sure if this post belongs here or in the BCL group. Anyway does anyone have any insights? ...
- Programtically determine paramaters
Is there a way to programatically determine the parameters passed to a procedure? i.e. given: void Proc1( string cVarName ) { ...determine that one parameter named cVarName is here and it's type is string and then say display it. } As an FYI, I was curious if I could write a generic function ...
- Programtically determine paramaters
Is there a way to programatically determine the parameters passed to a procedure? i.e. given: void Proc1( string cVarName ) { ...determine that one parameter named cVarName is here and it's type is string and then say display it. } As an FYI, I was curious if I could write a generic function ...
- FlowLayOutPanel and threads
Hi, i have a server that works with a socket, and when i receive a connection i want to add a control to my FlowLayOutPanel this is my code://This method starts my serverprivate void Start() { PrintMessage("Server started"); const int nPortListen = 2000; PrintMessage("Listening on port " + ...