User SeeR - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:25:33Z http://stackoverflow.com/feeds/user/22569 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1763468/azure-table-storage-data-consistency 0 Azure Table Storage data Consistency SeeR 2009-11-19T14:00:16Z 2009-11-24T15:35:51Z <p>Let say I have Table in Azure Table Storage</p> <pre><code>public class MyTable { public string PK {get; set;} public string RowPK {get; set;} public double Amount {get; set;} } </code></pre> <p>And message in Azure Queue which says <strong>Add 10 to Amount</strong>.</p> <p>Now let say one worker role </p> <ol> <li>Takes this message from queue</li> <li>Takes row from table</li> <li>Amount += 10</li> <li>Updates Row in Table</li> <li><strong>And Fails</strong></li> </ol> <p>After a while message is available in queue again. So next worker role:</p> <ol> <li>Takes this message from queue</li> <li>Takes row from table</li> <li>Amount += 10</li> <li>Updates Row in Table</li> <li><strong>Removes message from queue</strong></li> </ol> <p>Those actions results in <code>Amount += 20</code> instead of <code>Amount += 10</code>.</p> <p>How can I avoid such situations?</p> http://stackoverflow.com/questions/1779340/custom-mscorlib-dll-without-native-code 0 custom mscorlib.dll without native code SeeR 2009-11-22T17:25:51Z 2009-11-22T17:33:31Z <p>Is it possible to build custom mscorlib.dll without any use of native code (pinvoke allowed :-)?</p> <p>I've tried a little experiment this weekend to see how hard it would be to do it and had following problems:</p> <ol> <li>I've added one class System.Static to my version of mscorlib but had TypeLoadException with message that it can't load type 'System.Static`1' from 'mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089. So it seems that somehow it's still loading MS library. How to avoid that (I'm using /nostdlib switch already)?.</li> <li>When I named my mscorlib 'mycorlib' I had errors that System.Object must have a parent class</li> <li>If I have generic type T and I'm doing <code>new T()</code> it's translated by c# compilator to <code>Activator.CrateInstance&lt;T&gt;()</code> which in MS implementation calls <code>RuntimeTypeHandle.CreateInstance(...)</code> which is native method. Can I call it from my mscorlib or is it included in mscorlib provided by MS?</li> </ol> <p>My goal was to test the possibility of writing my versions of int, double, string and other standard types. I want to use MS CLR, but just provide my managed code classes.</p> <p>Is it possible?</p> http://stackoverflow.com/questions/1696742/c-property-refactoring-should-i-care 0 C# property refactoring - Should I care? SeeR 2009-11-08T14:42:33Z 2009-11-08T15:11:23Z <p>I have following code:</p> <pre><code>public class Header { Line Lines { get { ...}} public ICryptographer GetCryptographer(FieldGroup group) { ... } } public class Line { public Header Header { get; set; } public FieldGroup FieldGroup { get; set; } ICryptographer CryptoGrapher { get { return Header.GetCryptographer(FieldGroup); } } public decimal? Month1 { get { return _month1; } set { if (_month1 != value) Month1_Enc = CryptoGrapher.Encrypt(_month1 = value); } } private decimal? _month1; protected byte[] Month1_Enc { get; set; } //The same repeated for Month2 to Month12 } public interface ICryptographer { byte[] Encrypt(decimal? value); decimal? DecryptDecimal(byte[] value); } public enum FieldGroup { ... } </code></pre> <p>Shortly properties Month1 to Month12 are of type decimal? that should be encrypted before they are saved in database. I have also few other classes that have encrypted properties. Every property code looks exactly the same as Month1 I showed here.</p> <p>Ideally I would like to have something like this:</p> <pre><code>Encrypted&lt;decimal?&gt; Month1 { get; set;} </code></pre> <p>but this is impossible because each object may have different Cryptographer (symmetric key).</p> <p>Is there a way to refactor it to avoid such repeatable code?<br> Should I care about such repetition ?</p> http://stackoverflow.com/questions/1530638/how-to-install-winlogon-notification-packages-without-restarting 0 How to install Winlogon Notification Packages without restarting SeeR 2009-10-07T10:02:22Z 2009-10-07T10:02:22Z <p>To install <a href="http://msdn.microsoft.com/en-us/library/aa380545%28VS.85%29.aspx" rel="nofollow">Winlogon Notification Package</a> you need to add entries in registry under <code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify</code>.</p> <p>Then you must restart computer so winlogon will read this configuration. Is there a way to force winlogon to refresh this configuration without restarting?</p> <p>OR</p> <p>How can I detect that specific Notification Package is not working yet and requires restart? I'm talking about ScCertProp.</p> http://stackoverflow.com/questions/1166923/x509-certificate-for-only-one-application-which-oids-to-choose 0 x509 certificate for only one application - which OIDs to choose SeeR 2009-07-22T17:32:07Z 2009-09-27T06:36:51Z <p>I'm creating application that will create certificates for users. I want to mark somehow those certificates so that later I can search them in windows user certificate store by following categories:</p> <ul> <li>application GUID (or name - I want to know that this cert is for my application)</li> <li>certificate role (administrative certificate or user certificate)</li> <li>user email</li> </ul> <p>I know that for the last one I should use "E = J.Doe@mail.com" or OID number "1.2.840.113549.1.9.1 = J.Doe@mail.com" But I don't know which OIDs to choose for application GUID and certificate role.</p> <p>Or maybe I should use "Key Usage" field?</p> <p>I don't know if it's important, but certificates will be used to authenticate to my application and to decrypt data in database.</p> <p>Are there any standard ways to do it ?</p> http://stackoverflow.com/questions/883486/endinvoke-changes-current-callcontext-why 0 EndInvoke changes current CallContext - why? SeeR 2009-05-19T15:32:50Z 2009-09-24T16:33:33Z <p>I have following test</p> <pre><code>[Test] public void aaa() { CallContext.LogicalSetData("aa", "1"); Action parallelMethod = () =&gt; CallContext.LogicalSetData("aa", "2"); var r = parallelMethod.BeginInvoke(null, null); parallelMethod.EndInvoke(r); Assert.That(CallContext.LogicalGetData("aa"), Is.EqualTo("1")); } </code></pre> <p>Can anyone tell me why this test is failing on last line?</p> <p>Actually I know why - because EndInvoke is merging CallContext from paralell method to current one - but I don't understand the reason for this.</p> <p>For me this behaviour is similiar to changing method parameter values from inside of method that is called :-(</p> <p><strong>EDIT:</strong> I've changed my code example to use only LogicalGetData and LogicalSetData. As you can see in my other <a href="http://stackoverflow.com/questions/846187/how-to-include-own-data-in-executioncontext">question</a> I want to pass some data to another thread but I didn't expected that EndInvoke() will override my values with those changed in other thread.</p> http://stackoverflow.com/questions/604960/ntfs-alternate-data-streams-net/1420741#1420741 1 Answer by SeeR for NTFS Alternate Data Streams - .NET SeeR 2009-09-14T10:27:53Z 2009-09-14T10:27:53Z <p>You have ready to use library <a href="http://www.codeproject.com/KB/cs/ntfsstreams.aspx" rel="nofollow">here on codeproject</a></p> http://stackoverflow.com/questions/1050187/cryptgetprovparam-ppenumcontainers-shows-me-only-default-certificate-on-smart-ca 0 CryptGetProvParam PP_ENUMCONTAINERS shows me only default certificate on smart card SeeR 2009-06-26T17:07:18Z 2009-08-25T17:04:12Z <p>I have Gemalto.NET Smart Card.<br> I imported 2 certificates into it using Gemalto tools, which use <a href="http://www.sconnect.com/" rel="nofollow">sconnect</a> (which as I suspect use Crypto API to do it when used in IE).</p> <p>When I run </p> <pre><code>certutil -key -csp "Microsoft Base Smart Card Crypto Provider" </code></pre> <p>I have following result</p> <blockquote> <p>Microsoft Base Smart Card Crypto Provider:<br /> 7c168bc3-dc1d-a627-c218-cd45729b42cb [Default Container] AT_KEYEXCHANGE</p> <p>badd537a-a377-431b-cbc9-8699dbe15e0e AT_KEYEXCHANGE</p> <p>LoadKeys returned Key does not exist. 0x8009000d (-2146893811) CertUtil: -key command completed successfully.</p> </blockquote> <p>Now I want to find those keys in my C# program. To do it I wrote following method that should return all keys on specific smart card.</p> <pre><code>static List&lt;string&gt; EnumerateContainers(string card) { var list = new List&lt;string&gt;(); var provider = IntPtr.Zero; if (!CryptAcquireContext(ref provider, @"\\.\" + card + @"\", "Microsoft Base Smart Card Crypto Provider", 1, CspProviderFlags.UseMachineKeyStore)) Debug.WriteLine("no context for " + card); uint bufferSize = 4096; var container = new StringBuilder((int)bufferSize); uint flags = CRYPT_FIRST; while(CryptGetProvParam(provider, PP_ENUMCONTAINERS, container, ref bufferSize, flags)) { list.Add(container.ToString()); flags = 0; } return list; } </code></pre> <p>But my method find only the key 7c168bc3-dc1d-a627-c218-cd45729b42cb which is the default one. <strong>What should I do to find all keys/containers stored on the smart card ??</strong></p> <p>And Later</p> <p><strong>How can I delete those keys and import new one using C#?</strong></p> http://stackoverflow.com/questions/1166923/x509-certificate-for-only-one-application-which-oids-to-choose/1170122#1170122 0 Answer by SeeR for x509 certificate for only one application - which OIDs to choose SeeR 2009-07-23T07:12:10Z 2009-07-27T21:14:43Z <p>OK, after few hours I came with something like this.</p> <p>All Certificates will be recognized by Subject field. For Administrator certificate it will look like this:</p> <pre><code>CN=&lt;My application Name&gt; Administrator,OU=Administrator,OU=&lt;My application Name&gt;,O=&lt;My company Name&gt; </code></pre> <p>and for users</p> <pre><code>E=&lt;User email&gt;,CN=&lt;User email&gt;,OU=User,OU=&lt;My application Name&gt;,O=&lt;My company Name&gt; </code></pre> <p>If someone has better idea, I'm open for suggestions :-)</p> http://stackoverflow.com/questions/1123939/is-c-compiler-deciding-to-use-stackalloc-by-itself 3 Is c# compiler deciding to use stackalloc by itself ? SeeR 2009-07-14T07:23:22Z 2009-07-17T14:10:37Z <p>I found a blog entry which suggests that sometimes c# compiler may decide to put array on the stack instead of the heap:</p> <p><a href="http://www.atalasoft.com/cs/blogs/rickm/archive/2008/04/15/improving-performance-through-stack-allocation-net-memory-management-part-2.aspx" rel="nofollow">Improving Performance Through Stack Allocation (.NET Memory Management: Part 2)</a></p> <p>This guy claims that:</p> <blockquote> <p>The compiler will also sometimes decide to put things on the stack on its own. I did an experiment with TestStruct2 in which I allocated it both an unsafe and normal context. In the unsafe context the array was put on the heap, but in the normal context when I looked into memory the array had actually been allocated on the stack.</p> </blockquote> <p><strong>Can someone confirm that?</strong><br> I was trying to repeat his example, but everytime I tried array was allocated on the heap.</p> <p>If c# compiler can do such trick without using 'unsafe' keyword I'm specially intrested in it. I have a code that is working on many small byte arrays (8-10 bytes long) and so using heap for each new byte[...] is a waste of time and memory (especially that each object on heap has 8 bytes overhead needed for garbage collector).</p> <p><strong>EDIT:</strong> I just want to describe why it's important to me:<br> I'm writing library that is communicating with Gemalto.NET smart card which can have .net code working in it. When I call a method that returns something, smart card return 8 bytes that describes me the exact Type of return value. This 8 bytes are calculated by using md5 hash and some byte arrays concatenations.<br> Problem is that when I have an array that is not known to me I must scan all types in all assemblies loaded in application and for each I must calculate those 8 bytes until I find the same array.<br> I don't know other way to find the type, so I'm trying to speed it up as much as possible.</p> http://stackoverflow.com/questions/303287/can-a-generic-method-handle-both-reference-and-nullable-value-types/1046768#1046768 0 Answer by SeeR for Can a Generic Method handle both Reference and Nullable Value types? SeeR 2009-06-26T00:00:45Z 2009-06-26T00:00:45Z <pre><code>public static T Get&lt;T&gt;(this IDataRecord rec, Func&lt;int, T&gt; GetValue, int ordinal) { return rec.IsDBNull(ordinal) ? default(T) : GetValue(ordinal); } </code></pre> <p>or more performant</p> <pre><code>public static T Get&lt;T&gt;(this IDataRecord rec, Func&lt;IDataRecord, int, T&gt; GetValue, int ordinal) { return rec.IsDBNull(ordinal) ? default(T) : GetValue(rec, ordinal); } public static Func&lt;IDataRecord, int, int&gt; GetInt32 = (rec, i) =&gt; rec.GetInt32(i); public static Func&lt;IDataRecord, int, bool&gt; GetBool = (rec, i) =&gt; rec.GetBoolean(i); public static Func&lt;IDataRecord, int, string&gt; GetString = (rec, i) =&gt; rec.GetString(i); </code></pre> <p>and use it like this</p> <pre><code>rec.Get(GetString, index); rec.Get(GetInt32, index); </code></pre> http://stackoverflow.com/questions/984302/which-language-would-you-use-in-your-os/984360#984360 0 Answer by SeeR for Which language would you use in your OS? SeeR 2009-06-11T23:43:52Z 2009-06-11T23:43:52Z <p>I would be torn between using some existing low level language and write my own based on C# but with much better generics support. In second case I would make each method generic, but all the constraints will be resolved by compiler - to allow "duck typing" like in Scala but still language should be static. Also static virtual methods would lower the codebase.</p> <p>I've had that idea for a long time, but it never seems to be doable in real timeframe, so who knows maybe in the future. :-)</p> http://stackoverflow.com/questions/978274/whats-the-reason-of-using-the-object-type-instead-of-an-actual-type-for-events/978396#978396 2 Answer by SeeR for What's the reason of using the Object type instead of an actual type for events? SeeR 2009-06-10T22:04:37Z 2009-06-10T22:23:21Z <p>I think it's because of historical reasons mixed with avoiding code duplication.</p> <p>In .Net 1.0 there was no generics, so for each type that can throw event you was forced to define the event handler delegate. like:</p> <pre><code>public delegate void TextBoxEventHandler(TextBox sender, EventArgs e); public delegate void ComboBoxEventHandler(ComboBox sender, EventArgs e); </code></pre> <p>so instead of this, freamework developers created one</p> <pre><code>public delegate void EventHandler(object sender, EventArgs e); </code></pre> <p>and used cast/as operators.</p> <p>From .Net 2.0 we have generics so you can define it once like this</p> <pre><code>public delegate void EventHandler&lt;TSender, TEventArgs&gt;(TSender sender, TEventArgs e) where TEventArgs: EventArgs; </code></pre> <p>or even</p> <pre><code>public delegate void EventHandler&lt;TSender, TEventArgs&gt;(TSender sender, TEventArgs e); </code></pre> <p>And then use like this.</p> <pre><code>public event EventHandler&lt;TextBox, string&gt; TextChanged; public event EventHandler&lt;ComboBox, EventArgs&gt; SomeComboBoxEvent; </code></pre> <p>But this would break all applications written for .Net 1.0/1.1 so instead framework developers leaved it as it was. And now everyone are using those pre-generics classes.</p> <p>Also I'm not sure if Windows Forms designer can hadle generic EventHandler. I've never tried to test it.</p> <p>In my opinion typed (generic) events are better than this standard. So use it where you can.</p> http://stackoverflow.com/questions/978226/centralized-data-authorization-who-is-administrator 0 centralized data authorization - who is administrator? SeeR 2009-06-10T21:22:40Z 2009-06-10T21:22:40Z <p>Lets say I have centralized database and can't trust administrators (like in Azure or other cloud service). Lets say I solved the problem of authentication and I can trust user identity. Lets say I use certificates to authenticate and encrypt data (private key never leaves the client machine).</p> <p>How can I design the application/database to promote one or more users as administrators (users that can set up access rights to others).</p> <p>I know one way: Every user must point the person that will manage access rights for him, but what if we want to change the administrator - every user must do it again ?</p> <p>Other way I can think of is to sign user certificates by administrator certificate. Then use the rule: if you are my certificate signer then I respect your settings. But still I don't know what to do when we want to add new administrator, or change to new one.</p> <p>I'm completly lost with this problem.<br> Anyone ?</p> http://stackoverflow.com/questions/896821/signbycert-and-the-maximum-size-of-sign 0 SignByCert and the maximum size of sign SeeR 2009-05-22T08:11:04Z 2009-05-22T09:05:57Z <p>I have following table</p> <pre><code>CREATE TABLE User ( email sysname NOT NULL, sign varbinary(256) NULL ); </code></pre> <p>sysname in SQL Server 2005/2008 has the same size as nvarchar(128) - which I'm assuming is 256 bytes.</p> <p>I'm using SignByCert(..., email, ...) function to produce a signature of 'email' column.</p> <p>Can I make any assumptions about the max size of [sign] column ?</p> http://stackoverflow.com/questions/896821/signbycert-and-the-maximum-size-of-sign/896992#896992 1 Answer by SeeR for SignByCert and the maximum size of sign SeeR 2009-05-22T09:05:57Z 2009-05-22T09:05:57Z <p>Found it.</p> <p>According to the book "Accelerated SQL Server 2008" page 160 - the size of the siganture depends on the size of the private key in certificate.</p> <p>If size is 2048-bit then signature size will be 256-byte. If size is 1024-bit then signature size will be 128-byte.</p> <p>In my case I was creating certificates using CREATE CERTIFICATE TSQL statement and - according to SQL Server Books Online: </p> <blockquote> <p>Private keys generated by SQL Server are 1024 bits long</p> </blockquote> <p>so my max size for sign column is 128 bytes.</p> http://stackoverflow.com/questions/846187/how-to-include-own-data-in-executioncontext 1 How to include own data in ExecutionContext SeeR 2009-05-10T21:50:42Z 2009-05-11T08:10:01Z <p>I know that when you run some method in parallel by calling BeginInvoke() or ThreadPool.QueueUserWorkItem(...) .NET framework is capturing ExecutionContext object that contains Code Access Security information and some other things.</p> <p>What I want, is to include in ExecutionContext some data that is needed by my parallel method, but must be also captured at the moment of queuing the task.</p> <p>Problem is that not always I do have control on the code that is creating this parallel task, so I must find a way to store this data before I call this external code. Thats why I thought about ExecutionContext class.</p> <p>Is there any way to pass some state the parallel task when I'm not always in the control of the code that is splitting the work between threads.</p> http://stackoverflow.com/questions/846187/how-to-include-own-data-in-executioncontext/847158#847158 0 Answer by SeeR for How to include own data in ExecutionContext SeeR 2009-05-11T08:10:01Z 2009-05-11T08:10:01Z <p>Found it:</p> <pre><code>CallContext.LogicalSetData(...) </code></pre> <p>and</p> <pre><code>CallContext.LogicalGetData(...) </code></pre> http://stackoverflow.com/questions/839066/net-immutable-objects/839127#839127 1 Answer by SeeR for .net Immutable objects SeeR 2009-05-08T10:03:37Z 2009-05-08T10:33:01Z <p>If I understood you correctly, you want Entity to be immutable. If so, then the test should be changed to</p> <pre><code>var setterCount = (from s in typeof(string).GetProperties(BindingFlags.Public | BindingFlags.Instance).Select(p =&gt; p.GetSetMethod()) where s != null &amp;&amp; s.IsPublic select s).Count(); Assert.That(setterCount == 0, Is.True, "Immutable rule is broken"); </code></pre> http://stackoverflow.com/questions/199016/wglcreatecontext-in-c-failing-but-not-in-managed-c 0 wglCreateContext in C# failing but not in managed C++ SeeR 2008-10-13T20:59:16Z 2009-04-16T01:02:52Z <p>I'm trying to use opengl in C#. I have following code which fails with error 2000 ERROR_INVALID_PIXEL_FORMAT<br> First definitions:</p> <pre><code>[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)] public static extern IntPtr GetDC(IntPtr hWnd); [StructLayout(LayoutKind.Sequential)] public struct PIXELFORMATDESCRIPTOR { public void Init() { nSize = (ushort) Marshal.SizeOf(typeof (PIXELFORMATDESCRIPTOR)); nVersion = 1; dwFlags = PFD_FLAGS.PFD_DRAW_TO_WINDOW | PFD_FLAGS.PFD_SUPPORT_OPENGL | PFD_FLAGS.PFD_DOUBLEBUFFER | PFD_FLAGS.PFD_SUPPORT_COMPOSITION; iPixelType = PFD_PIXEL_TYPE.PFD_TYPE_RGBA; cColorBits = 24; cRedBits = cRedShift = cGreenBits = cGreenShift = cBlueBits = cBlueShift = 0; cAlphaBits = cAlphaShift = 0; cAccumBits = cAccumRedBits = cAccumGreenBits = cAccumBlueBits = cAccumAlphaBits = 0; cDepthBits = 32; cStencilBits = cAuxBuffers = 0; iLayerType = PFD_LAYER_TYPES.PFD_MAIN_PLANE; bReserved = 0; dwLayerMask = dwVisibleMask = dwDamageMask = 0; } ushort nSize; ushort nVersion; PFD_FLAGS dwFlags; PFD_PIXEL_TYPE iPixelType; byte cColorBits; byte cRedBits; byte cRedShift; byte cGreenBits; byte cGreenShift; byte cBlueBits; byte cBlueShift; byte cAlphaBits; byte cAlphaShift; byte cAccumBits; byte cAccumRedBits; byte cAccumGreenBits; byte cAccumBlueBits; byte cAccumAlphaBits; byte cDepthBits; byte cStencilBits; byte cAuxBuffers; PFD_LAYER_TYPES iLayerType; byte bReserved; uint dwLayerMask; uint dwVisibleMask; uint dwDamageMask; } [Flags] public enum PFD_FLAGS : uint { PFD_DOUBLEBUFFER = 0x00000001, PFD_STEREO = 0x00000002, PFD_DRAW_TO_WINDOW = 0x00000004, PFD_DRAW_TO_BITMAP = 0x00000008, PFD_SUPPORT_GDI = 0x00000010, PFD_SUPPORT_OPENGL = 0x00000020, PFD_GENERIC_FORMAT = 0x00000040, PFD_NEED_PALETTE = 0x00000080, PFD_NEED_SYSTEM_PALETTE = 0x00000100, PFD_SWAP_EXCHANGE = 0x00000200, PFD_SWAP_COPY = 0x00000400, PFD_SWAP_LAYER_BUFFERS = 0x00000800, PFD_GENERIC_ACCELERATED = 0x00001000, PFD_SUPPORT_DIRECTDRAW = 0x00002000, PFD_DIRECT3D_ACCELERATED = 0x00004000, PFD_SUPPORT_COMPOSITION = 0x00008000, PFD_DEPTH_DONTCARE = 0x20000000, PFD_DOUBLEBUFFER_DONTCARE = 0x40000000, PFD_STEREO_DONTCARE = 0x80000000 } public enum PFD_LAYER_TYPES : byte { PFD_MAIN_PLANE = 0, PFD_OVERLAY_PLANE = 1, PFD_UNDERLAY_PLANE = 255 } public enum PFD_PIXEL_TYPE : byte { PFD_TYPE_RGBA = 0, PFD_TYPE_COLORINDEX = 1 } [DllImport("gdi32.dll", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)] public static extern int ChoosePixelFormat(IntPtr hdc, [In] ref PIXELFORMATDESCRIPTOR ppfd); [DllImport("gdi32.dll", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)] public static extern bool SetPixelFormat(IntPtr hdc, int iPixelFormat, ref PIXELFORMATDESCRIPTOR ppfd); [DllImport("opengl32.dll", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)] public static extern IntPtr wglCreateContext(IntPtr hDC); </code></pre> <p>And now the code that fails:</p> <pre><code>IntPtr dc = Win.GetDC(hwnd); var pixelformatdescriptor = new GL.PIXELFORMATDESCRIPTOR(); pixelformatdescriptor.Init(); var pixelFormat = GL.ChoosePixelFormat(dc, ref pixelformatdescriptor); if(!GL.SetPixelFormat(dc, pixelFormat, ref pixelformatdescriptor)) throw new Win32Exception(Marshal.GetLastWin32Error()); IntPtr hglrc; if((hglrc = GL.wglCreateContext(dc)) == IntPtr.Zero) throw new Win32Exception(Marshal.GetLastWin32Error()); //&lt;----- here I have exception </code></pre> <p>the same code in managed C++ is working</p> <pre><code>HDC dc = GetDC(hWnd); PIXELFORMATDESCRIPTOR pf; pf.nSize = sizeof(PIXELFORMATDESCRIPTOR); pf.nVersion = 1; pf.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER | PFD_SUPPORT_COMPOSITION; pf.cColorBits = 24; pf.cRedBits = pf.cRedShift = pf.cGreenBits = pf.cGreenShift = pf.cBlueBits = pf.cBlueShift = 0; pf.cAlphaBits = pf.cAlphaShift = 0; pf.cAccumBits = pf.cAccumRedBits = pf.cAccumGreenBits = pf.cAccumBlueBits = pf.cAccumAlphaBits = 0; pf.cDepthBits = 32; pf.cStencilBits = pf.cAuxBuffers = 0; pf.iLayerType = PFD_MAIN_PLANE; pf.bReserved = 0; pf.dwLayerMask = pf.dwVisibleMask = pf.dwDamageMask = 0; int ipf = ChoosePixelFormat(dc, &amp;pf); SetPixelFormat(dc, ipf, &amp;pf); HGLRC hglrc = wglCreateContext(dc); </code></pre> <p>I've tried it on VIsta 64-bit with ATI graphic card and on Windows XP 32-bit with Nvidia with the same result in both cases.<br> Also I want to mention that I don't want to use any already written framework for it.<br> <br> Can anyone show me where is the bug in C# code that is causing the exception?<br> <br></p> http://stackoverflow.com/questions/178255/serviceprovider-cache-etc-done-with-generics-without-cast/189329#189329 0 Answer by SeeR for ServiceProvider, cache etc. done with generics without cast SeeR 2008-10-09T21:44:07Z 2008-11-02T20:05:16Z <p><del>I think I found the solution. Here you have my implementation of ServiceProvider You can find the description of it on <a href="http://seermindflow.blogspot.com/2008/10/is-it-possible-to-write-c-application.html" rel="nofollow">my blog</a>.</p> <pre><code>public class ServiceContainer : IDisposable { readonly IList&lt;IService&gt; services = new List&lt;IService&gt;(); public void Add&lt;T&gt;(T service) { Add&lt;T,T&gt;(service); } public void Add&lt;Key, T&gt;(T service) where T : Key { services.Add(new Service&lt;Key&gt;(this, service)); } public void Dispose() { foreach(var service in services) service.Remove(this); } ~ServiceContainer() { Dispose(); } public T Get&lt;T&gt;() { return Service&lt;T&gt;.Get(this); } } public interface IService { void Remove(object parent); } public class Service&lt;T&gt; : IService { static readonly Dictionary&lt;object, T&gt; services = new Dictionary&lt;object, T&gt;(); public Service(object parent, T service) { services.Add(parent, service); } public void Remove(object parent) { services.Remove(parent); } public static T Get(object parent) { return services[parent]; } } </code></pre> <p>Yes it uses static field, but all references are removed in finalizer so the only drawback is that ServiceProvider stays one GC generation longer than usually.</del></p> <p><strong>EDIT</strong>: OK, after few tries I must admit that Jon Skeet was right, currently there is no simple solution to this problem. My solution written above can work only if I fulfill 2 constraints:</p> <ol> <li>I use <code>Dictionary&lt;WeakReference, T&gt; services</code> instead of <code>Dictionary&lt;object, T&gt; services</code></li> <li>No service will have reference to ServiceProvider.</li> </ol> <p>Otherwise you will have memory leaks :-(</p> <p>Simple solution that Microsoft could provide is to create native WeakReference&lt; T > which will solve constraint No 2. and we can write services like this:</p> <pre><code>Dictionary&lt;WeakReference, WeakReference&lt;T&gt;&gt; services </code></pre> http://stackoverflow.com/questions/178255/serviceprovider-cache-etc-done-with-generics-without-cast 0 ServiceProvider, cache etc. done with generics without cast SeeR 2008-10-07T12:42:12Z 2008-11-02T20:05:16Z <p>I'm talking about c# <del>3.5</del> 3.0. I know how to do it when cache or ServiceProvider can have only one instance for the whole application. In this case ServiceProvider can look like this</p> <pre><code>public static class Service&lt;T&gt; { public static T Value {get; set;} } </code></pre> <p>and can be used for different types like this:</p> <pre><code>Service&lt;IDbConnection&gt;.Value = new SqlConnection("..."); Service&lt;IDesigner&gt;.Value = ...; //... IDbCommand cmd = Service&lt;IDbConnection&gt;.Value.CreateCommand(); </code></pre> <p>Static cache is also easy:</p> <pre><code>public static class Cache&lt;T&gt; { private static Dictionary&lt;int, T&gt; cache = new Dictionary&lt;int, T&gt;(); public static void Add(int key, T value) { cache.Add(key, value); } public static T Find(int key) { return cache[key]; } } </code></pre> <p>and can be used like this:</p> <pre><code>Cache&lt;string&gt;.Add(1, "test"); Cache&lt;DateTime&gt;.Add(2, DateTime.Now); //... string found = Cache&lt;string&gt;.Find(1); </code></pre> <p><br> <strong>My question is</strong>: how can I create similiar cache or service provider when I want to have 2 or more different instances of each. Here is example code, how I want to use service provider:</p> <pre><code>ServiceProvider provider = new ServiceProvider(); provider.Add&lt;IDbConnection&gt;(new SqlConnection("...")); provider.Add&lt;IDesigner&gt;(...); //... ServiceProvider provider1 = new ServiceProvider(); provider1.Add&lt;IDbConnection&gt;(new SqlConnection("...")); //... //... IDbCommand cmd1 = provider.GetService&lt;IDbConnection&gt;().CreateCommand(); IDbCommand cmd2 = provider1.GetService&lt;IDbConnection&gt;().CreateCommand(); </code></pre> <p>The only implementation that I have in my head is using <strong>casting which I want to avoid</strong>.</p> <pre><code>public class ServiceProvider { private Dictionary&lt;Type, object&gt; services = new Dictionary&lt;Type, object&gt;(); public void Add&lt;T&gt;(T value) { services.Add(typeof(T), value); } public T GetService&lt;T&gt;() { return (T) services[typeof (T)]; } } </code></pre> http://stackoverflow.com/questions/217162/uxtheme-equivalent-for-opengl-or-directx 0 uxtheme equivalent for opengl (or directx)? SeeR 2008-10-19T23:29:58Z 2008-10-27T19:11:33Z <p>When you use WPF (which uses DirectX) you quickly notice one fact that WPF themes are independent from windows themes and styles.<br> I'm playing with GUI using opengl on windows and right now I have one problem: I want to use windows themes and styles. I don't want to go WPF route and make it independent.<br> I know that all information about it is stored in .theme (INI file) and .msstyle (dll with resources) files and programmers should use uxtheme.dll to draw all backgrounds, texts and so on. Problem is that uxtheme.dll functions are closely coupled with GDI device context. For example:</p> <pre><code>HRESULT DrawThemeIcon(HTHEME hTheme, HDC hdc, int iPartId, int iStateId, LPCRECT pRect, HIMAGELIST himl, int iImageIndex ); </code></pre> <p>requires HDC as one of the parameters and I don't think I should mix GDI functions and opengl one on the same device context.<br> In case of DrawThemeXXX functions I can try to draw to bitmap and later pass it somehow to opengl (maybe even BeginBufferedAnimation can work like this). But maybe someone knows the better way.<br> Is there somwhere equivalent of uxtheme.dll for opengl? Or is it simple to write such equivalent and I just need good resource of info about .msstyle file and how to extract resources from it (maybe LoadResource() or LoadXXX() functions)? Can somone point me in the right direction?</p> <p><strong>Edit:</strong> Nevermind. Week later I'm using VisualStyleRenderer class in .NET framework 3.5 and it works.<br> I was afraid that mixing GDI and OpenGL will disable aero in Vista but it seems to work if you are not using double buffering.</p> http://stackoverflow.com/questions/208387/weakreference-bug 1 WeakReference Bug ? SeeR 2008-10-16T12:41:25Z 2008-10-16T13:17:39Z <pre><code>[TestMethod] public void Memory() { var wr = new WeakReference("aaabbb"); Assert.IsTrue(wr.IsAlive); GC.Collect(); GC.Collect(); GC.Collect(); GC.Collect(); GC.Collect(); Assert.IsFalse(wr.IsAlive); //&lt;-- fails here } </code></pre> <p>It's .NET 3.5 SP1<br> Can anyone can tell me why this test fails?</p> <p><strong>Edit</strong>: Thanks stusmith</p> <blockquote> <p>You have a reference to a string, which since it is a constant, is probably interned (ie not dynamically allocated), and will never be collected.</p> </blockquote> <p>That was it. Changed first line to </p> <pre><code>var wr = new WeakReference(new object()); </code></pre> <p>and the test passes :-)</p> http://stackoverflow.com/questions/199016/wglcreatecontext-in-c-failing-but-not-in-managed-c/206933#206933 4 Answer by SeeR for wglCreateContext in C# failing but not in managed C++ SeeR 2008-10-15T23:48:01Z 2008-10-15T23:48:01Z <p>Found solution.<br> Problem is very strange ugly and really hard to find. Somwhere on the internet I found that when you are linking opengl32.lib while compiling c++ application it must be placed before gdi32.lib. The reason for this is that (supposedly) opengl32.dll is overwriting ChoosePixelFormat and SetPixelFormat functions (and probably more :-). As I found in my c++ version, accidentally it was the case.<br> Heh, but how to do it in C#<br> After few days of searching I found that in <a href="http://www.taoframework.com/" rel="nofollow">tao framework</a> they solved it using kernel32.dll LoadLibrary() function and loading opengl32.dll before calling SetPixelFormat</p> <pre><code>public static bool SetPixelFormat(IntPtr deviceContext, int pixelFormat, ref PIXELFORMATDESCRIPTOR pixelFormatDescriptor) { Kernel.LoadLibrary("opengl32.dll"); return _SetPixelFormat(deviceContext, pixelFormat, ref pixelFormatDescriptor); } </code></pre> <p>So we know that opengl32.dll must be loaded before gdi32.dll, is there any other way of doing this. After while I thought that we can call some NOP function from opengl32.dll to load it. For example:</p> <pre><code>[DllImport("opengl32.dll", EntryPoint = "glGetString", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)] static extern IntPtr _glGetString(StringName name); public static string glGetString(StringName name) { return Marshal.PtrToStringAnsi(_glGetString(name)); } public enum StringName : uint { GL_VENDOR = 0x1F00, GL_RENDERER = 0x1F01, GL_VERSION = 0x1F02, GL_EXTENSIONS = 0x1F03 } </code></pre> <p>and on the start of application, before any call to gdi32.dll I use this:</p> <pre><code>GL.glGetString(0); </code></pre> <p>Both ways solves the problem.</p> http://stackoverflow.com/questions/179921/how-do-you-check-if-a-folder-is-accessible-over-a-network-in-c/179957#179957 1 Answer by SeeR for How do you check if a folder is accessible over a network in c# SeeR 2008-10-07T19:28:32Z 2008-10-07T19:28:32Z <p>Duplicate<br> <a href="http://stackoverflow.com/questions/136539/determining-if-a-folder-is-shared-in-net">see this</a>. I Saw this on the right side in "related questions" :-)</p> http://stackoverflow.com/questions/144151/how-do-i-prevent-excel-from-rendering-the-spreadsheet-as-my-macro-calculates-it/144173#144173 13 Answer by SeeR for How do I prevent Excel from rendering the spreadsheet as my macro calculates it? SeeR 2008-09-27T18:11:49Z 2008-09-28T21:43:44Z <p>I use both of the proposed solutions:</p> <pre><code>Application.ScreenUpdating = False Application.Calculation = xlCalculationManual ... ... ... Application.Calculation = xlCalculationAutomatic Application.ScreenUpdating = True </code></pre> http://stackoverflow.com/questions/4458/domain-specific-language-resources/144157#144157 2 Answer by SeeR for Domain Specific Language resources SeeR 2008-09-27T18:04:29Z 2008-09-27T18:04:29Z <p>For me the best source of T4 examples was <a href="http://www.olegsych.com/" rel="nofollow">this</a> blog.</p> http://stackoverflow.com/questions/141970/class-with-valuetypes-fields-and-boxing 1 class with valueTypes fields and boxing SeeR 2008-09-26T21:05:09Z 2008-09-27T17:56:50Z <p>I'm experimenting with generics and I'm trying to create structure similar to Dataset class.<br> I have following code</p> <pre><code>public struct Column&lt;T&gt; { T value; T originalValue; public bool HasChanges { get { return !value.Equals(originalValue); } } public void AcceptChanges() { originalValue = value; } } public class Record { Column&lt;int&gt; id; Column&lt;string&gt; name; Column&lt;DateTime?&gt; someDate; Column&lt;int?&gt; someInt; public bool HasChanges { get { return id.HasChanges | name.HasChanges | someDate.HasChanges | someInt.HasChanges; } } public void AcceptChanges() { id.AcceptChanges(); name.AcceptChanges(); someDate.AcceptChanges(); someInt.AcceptChanges(); } } </code></pre> <p>Problem I have is that when I add new column I need to add it also in HasChanges property and AcceptChanges() method. This just asks for some refactoring.<br> So first solution that cames to my mind was something like this:</p> <pre><code>public interface IColumn { bool HasChanges { get; } void AcceptChanges(); } public struct Column&lt;T&gt; : IColumn {...} public class Record { Column&lt;int&gt; id; Column&lt;string&gt; name; Column&lt;DateTime?&gt; someDate; Column&lt;int?&gt; someInt; IColumn[] Columns { get { return new IColumn[] {id, name, someDate, someInt}; }} public bool HasChanges { get { bool has = false; IColumn[] columns = Columns; //clone and boxing for (int i = 0; i &lt; columns.Length; i++) has |= columns[i].HasChanges; return has; } } public void AcceptChanges() { IColumn[] columns = Columns; //clone and boxing for (int i = 0; i &lt; columns.Length; i++) columns[i].AcceptChanges(); //Here we are changing clone } } </code></pre> <p>As you can see from comments we have few problems here with struct cloning. Simple solution to this is to change Column to class, but from my tests it seems that it increases memory usage by ~40% (because of each object metadata) which is not acceptable for me. <br> <br> So my question is: does anyone have any other ideas how to create methods that can work on different structured objects/records? Maybe someone from F# community can suggest how such problems are solved in functional languages and how it impacts performance and memory usage. <br> <br> <strong>Edit:</strong><br> sfg thanks for suggestion about macros.<br> In Visual Studio 2008 there is built-in (but not so known) template engine called T4. Tha whole point is to add '.tt' file to my project and create a template that will search all my classes, recognize somehow the ones that are records (for example by some interface they implement) and produce partial classes with HasChanges and AcceptChanges() that will call only Columns the class contain.<br><br> Some usefull links:<br> <a href="http://www.t4editor.net/" rel="nofollow" title="T4 Editor for VS">T4 Editor for VS</a><br> <a href="http://www.olegsych.com/2007/12/text-template-transformation-toolkit/" rel="nofollow" title="Blog with links and tutorials about T4">Blog with links and tutorials about T4</a><br> <a href="http://www.olegsych.com/2008/07/t4-template-for-generating-sql-view-from-csharp-enumeration/" rel="nofollow" title="Blog entry with example that uses EnvDTE to read project files">Blog entry with example that uses EnvDTE to read project files</a></p> http://stackoverflow.com/questions/138367/most-wanted-feature-for-c-4-0/139267#139267 13 Answer by SeeR for Most wanted feature for C# 4.0 ? SeeR 2008-09-26T12:51:08Z 2008-09-26T13:33:10Z <p>Much much better type inferrence for generic methods. <br> Example: F# <br> <br> I dont want to use &lt;,,,>() and make the code less readable when compiler can easily deduct the types from method parameters.<br> <br> <strong>Edit:</strong> Example in c# 3.5 that should work: <br> <br> I have method</p> <pre><code>public static TResult Aggregate&lt;T, TResult&gt;(IEnumerable&lt;T&gt; elements, Func&lt;TResult, T, TResult&gt; Aggregator){...} </code></pre> <p>and another </p> <pre><code>public static string CSV(string s, string s1){...} </code></pre> <p>so for me this should compile</p> <pre><code>string[] parts = "aaa;bbb;ccc".Split(';'); string result = Aggregate(parts,CSV); </code></pre> <p>but it's not, and I must write</p> <pre><code>string result = Aggregate&lt;string, string&gt;(parts,CSV); </code></pre> http://stackoverflow.com/questions/1123939/is-c-compiler-deciding-to-use-stackalloc-by-itself/1124086#1124086 Comment by SeeR on Is c# compiler deciding to use stackalloc by itself ? SeeR 2009-11-22T17:33:05Z 2009-11-22T17:33:05Z Because thise Type scanning can be easy pipelined I wrote extension method that allocated this array only once and used yield return. Thanks for suggestion :-) http://stackoverflow.com/questions/1696742/c-property-refactoring-should-i-care/1696767#1696767 Comment by SeeR on C# property refactoring - Should I care? SeeR 2009-11-09T07:56:27Z 2009-11-09T07:56:27Z In conversion operators I don't have information about parent (unless I use some static fields - which I can't in this case) http://stackoverflow.com/questions/1696742/c-property-refactoring-should-i-care/1696767#1696767 Comment by SeeR on C# property refactoring - Should I care? SeeR 2009-11-08T23:56:51Z 2009-11-08T23:56:51Z I thought about such way, but this will require to set parent if I want to set Month1 with new value. I can do it in two places 1) In code that is using Line instance which is worse beacuse I must remember about it in every place. 2) In Month1 setter method which is similiar amount of code I have right now. http://stackoverflow.com/questions/1403785/simple-symmetric-encryption-of-long-to-string-and-back-in-java/1403853#1403853 Comment by SeeR on simple symmetric encryption of long to String (and back) in java SeeR 2009-11-03T08:45:01Z 2009-11-03T08:45:01Z Does this algorithm has some name so I can read more about it ?? http://stackoverflow.com/questions/1166923/x509-certificate-for-only-one-application-which-oids-to-choose/1180216#1180216 Comment by SeeR on x509 certificate for only one application - which OIDs to choose SeeR 2009-07-27T21:12:37Z 2009-07-27T21:12:37Z Actually we'll have a smart card per each user for few especially sensitive application which have common &quot;administrators&quot; (i.e our finance director). And I have only two type of certificates for admin and for user. All user certificates are signed by administrator. All other roles are defined in database and signed by administrator also. Exactly as you told - there is a great risk of data to be leaked - that's why we are taking those special steps to secure them. http://stackoverflow.com/questions/1023981/practical-applications-of-homomorphic-encryption-algorithms/1082738#1082738 Comment by SeeR on Practical applications of homomorphic encryption algorithms? SeeR 2009-07-05T22:15:22Z 2009-07-05T22:15:22Z That's the feature that's stopping me (my company) from encrypting every value in our financial system and move it to the cloud service http://stackoverflow.com/questions/303287/can-a-generic-method-handle-both-reference-and-nullable-value-types/1046768#1046768 Comment by SeeR on Can a Generic Method handle both Reference and Nullable Value types? SeeR 2009-06-26T21:27:37Z 2009-06-26T21:27:37Z Also comparing to BFree solution you avoid boxing http://stackoverflow.com/questions/303287/can-a-generic-method-handle-both-reference-and-nullable-value-types/1046768#1046768 Comment by SeeR on Can a Generic Method handle both Reference and Nullable Value types? SeeR 2009-06-26T21:15:12Z 2009-06-26T21:15:12Z Maybe, but the difference from your solution is that you have only one method where you check for nullability and avoid casting which may be costly if you have really large datasets. http://stackoverflow.com/questions/978274/whats-the-reason-of-using-the-object-type-instead-of-an-actual-type-for-events/978396#978396 Comment by SeeR on What's the reason of using the Object type instead of an actual type for events? SeeR 2009-06-11T11:35:21Z 2009-06-11T11:35:21Z OK, I've checked it. Both Windows Forms and WPF designer works without problem with generic EventHandler. So now there is no reason to not use it :-) http://stackoverflow.com/questions/978274/whats-the-reason-of-using-the-object-type-instead-of-an-actual-type-for-events/978396#978396 Comment by SeeR on What's the reason of using the Object type instead of an actual type for events? SeeR 2009-06-10T22:58:23Z 2009-06-10T22:58:23Z Expect problems with WPF because of XAML. I'm not the expert here. I'm still using Window Forms, but heard that in .NET 4 WPF/XAML should have much more support for generic types. http://stackoverflow.com/questions/978274/whats-the-reason-of-using-the-object-type-instead-of-an-actual-type-for-events/978285#978285 Comment by SeeR on What's the reason of using the Object type instead of an actual type for events? SeeR 2009-06-10T22:08:42Z 2009-06-10T22:08:42Z How the type cannot be known at compile time. If you are not using reflection to connect event to the handler method you have all information at compile time. http://stackoverflow.com/questions/883486/endinvoke-changes-current-callcontext-why/883603#883603 Comment by SeeR on EndInvoke changes current CallContext - why? SeeR 2009-05-20T21:05:48Z 2009-05-20T21:05:48Z Problem is I want to capture and pass some data to the thread created by my main thread, but don't want to override it when this external thread finishes. Maybe there is other way, even if it's not my code that is calling BeginInvoke()/EndInvoke(). I'm open for suggestions. http://stackoverflow.com/questions/883486/endinvoke-changes-current-callcontext-why/883603#883603 Comment by SeeR on EndInvoke changes current CallContext - why? SeeR 2009-05-20T07:19:56Z 2009-05-20T07:19:56Z @darin I've changed code example to use Logical methods. Sorry but this is not the point of my question. I can't uderstand what logic stays behind this strange behaviour. How can anyone want to override local data with those changed in other thread? http://stackoverflow.com/questions/839066/net-immutable-objects/839127#839127 Comment by SeeR on .net Immutable objects SeeR 2009-05-08T10:33:21Z 2009-05-08T10:33:21Z Fixed, thanks Daniel http://stackoverflow.com/questions/178255/serviceprovider-cache-etc-done-with-generics-without-cast/189329#189329 Comment by SeeR on ServiceProvider, cache etc. done with generics without cast SeeR 2008-10-09T23:00:26Z 2008-10-09T23:00:26Z Oh, and I don't have any concrete application in mind - it was rather academic curiosity if it's possible to write application without cast. Maybe I'll use it in some project in the future :-)