Do NOT use for questions about .NET Core - use [.net-core] instead.
I'm writing code to do Xml serialization. With below function. public static string SerializeToXml(object obj) { XmlSerializer serializer = new XmlSerializer(…
c# .net xml-serializationI have a uri string like: http://example.com/file?a=1&b=2&c=string%20param Is there an …
c# .net uriPossible Duplicate: is there a generic Parse() function that will convert a string to any type using parse? I want …
c# .net genericsI'm using .NET 2.0 and I'm trying to bind a combobox's Datasource to a sorted dictionary. So the error I'm getting …
c# .net winforms combobox datasourceFirst of all, I have not seen this error anywhere else and I guess it's not a replicate so please …
.net asp.net-mvc linq entity-framework asp.net-mvc-5What are the differences between using SqlDataAdapter vs SqlDataReader for getting data from a DB? I am specifically looking into …
c# .netI've got a method that uses a WebRequest to upload a file to a sharepoint 2010 list/folder, using a PUT …
.net sharepoint httpwebrequest webrequestPossible Duplicate: C# - Is there a better alternative than this to 'switch on type'? Hello suppose i get a …
c# .net optimization switch-statementHow to increase maxReceivedMessageSize and maxBufferSize parameters in app.config file to 2000000 before running the application.
c# .net winforms wcf service-model