15
votes
16answers
2k views
Is accessing a variable in C# an atomic operation?
I've been raised to believe that if multiple threads can access a variable, then all reads from and writes to that variable must be protected by synchronization code, such as a "lock" statement, be …
4
votes
2answers
4k views
When reading a CSV file using a DataReader and the OLEDB Jet data provider, how can I control column data types?
In my C# application I am using the Microsoft Jet OLEDB data provider to read a CSV file. The connection string looks like this:
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\Data …
0
votes
Is accessing a variable in C# an atomic operation?
@Keith
The "Perform initialization" comment is standing in for all the config-reading, class-instantiating, and settings-setting that Membership does to initialize s_Provider, so I understand …
0
votes
Is accessing a variable in C# an atomic operation?
@John Richardson
You're right. The real Membership class has that second check. I left it out because what I'm really interested in is whether the first call to s_Initialized, outside the loc …
4
votes
Is accessing a variable in C# an atomic operation?
The correct answer seems to be, "Yes, mostly."
John's answer referencing the CLI spec indicates that accesses to variables not larger than 32 bits on a 32-bit processor are atomic. …
0
votes
Best mock framework that can do both WebForms and MVC?
I would just go ahead and use my favourite framework for both. I don't think there's any reason that I would choose one framework for web forms and another for MVC. A far bigger problem is how I wo …
1
vote
Developer Friendly ERP
I've done a bit of integration between ASP.NET and Dynamics AX4 - it has a .NET API called Business Connector that gives you access to AX's full internal object model - if AX does it, your web app …
1
vote
Is accessing a variable in C# an atomic operation?
@Leon
I see your point - the way I've asked, and then commented on, the question allows it to be taken in a couple of different ways.
To be clear, I wanted to know if it was safe to h …
0
votes
Help accessing application settings using ConfigurationManager
Visual Studio doesn't make it obvious which assembly reference you need to add. One way to find out would be to look up ConfigurationManager in the MSDN Library. At the top of the "about Configurat …
2
votes
When reading a CSV file using a DataReader and the OLEDB Jet data provider, how can I control column data types?
To expand on Marc's answer, I need to create a text file called Schema.ini and put it in the same directory as the CSV file. As well as column types, this file can specify the file format, date tim …
0
votes
C#, XML-Doc: Refering to a generic type of a generic type in C# XML documentation?
There seems to be no way to refer to a generic of a generic in XML documentation, because actually, there's no way to refer to a generic of any specific type.
Lasse V Karlsen's …
