¡@

Home 

c# Programming Glossary: rolling

Encrypting & Decrypting a String in C#

http://stackoverflow.com/questions/10168240/encrypting-decrypting-a-string-in-c-sharp

have said Cryptography is not simple so it's best to avoid rolling your own encryption algorithm. You can however roll your own..

Best Practices of Test Driven Development Using C# and RhinoMocks [closed]

http://stackoverflow.com/questions/124210/best-practices-of-test-driven-development-using-c-sharp-and-rhinomocks

frameworks makes your tests incredibly hard to read. By rolling your own you'll have complete control over your mocks stubs..

Proper localization of a WinForms application

http://stackoverflow.com/questions/1251225/proper-localization-of-a-winforms-application

touching InitializeComponent. At the moment I am indeed rolling my own WinForms localization Framework... c# .net winforms..

How to intersect two polygons?

http://stackoverflow.com/questions/1526352/how-to-intersect-two-polygons

own for the hopelessly masochistic When I was considering rolling my own I found the Weiler Atherton algorithm to have the most..

How to create and connect custom user buttons/controls with lines using windows forms

http://stackoverflow.com/questions/15819318/how-to-create-and-connect-custom-user-buttons-controls-with-lines-using-windows

of the curve. You can also manipulate that value by rolling the mouse wheel when hovering the TextBoxes under Mid Point..

TransactionScope automatically escalating to MSDTC on some machines?

http://stackoverflow.com/questions/1690892/transactionscope-automatically-escalating-to-msdtc-on-some-machines

got me scratching my head and has me seriously considering rolling back to a home spun TransactionScope like solution based on..

SQL Server: Rethrow exception with the original exception number

http://stackoverflow.com/questions/1882788/sql-server-rethrow-exception-with-the-original-exception-number

If something goes wrong the CATCH block takes care of rolling back all changes made and it works fine except one thing The..

Best Data Access Layer for .NET [duplicate]

http://stackoverflow.com/questions/200279/best-data-access-layer-for-net

always the option of learning some enterprise patterns and rolling your own. There is a good book by Martin Fowler specifically..

Do we have transactions in MS-Access?

http://stackoverflow.com/questions/2078432/do-we-have-transactions-in-ms-access

COMMIT TRANSACTION WORK Conclude a transaction by rolling back all work performed during the transaction ROLLBACK TRANSACTION..

Silverlight, Wpf Web App (xbap) or Click Once? Pros and Cons

http://stackoverflow.com/questions/251718/silverlight-wpf-web-app-xbap-or-click-once-pros-and-cons

So what are the pros and cons of each I'll start the ball rolling Edit Added in some answers from artur carvalho Silverlight Pros..

Log4net - how to disable creation of empty log file on app start

http://stackoverflow.com/questions/2533403/log4net-how-to-disable-creation-of-empty-log-file-on-app-start

lockingModel type Namespace.MyLock I'm using this with a rolling file appender. The second method is listed at the link. I haven't..

Under what circumstances is an SqlConnection automatically enlisted in an ambient TransactionScope Transaction?

http://stackoverflow.com/questions/2884863/under-what-circumstances-is-an-sqlconnection-automatically-enlisted-in-an-ambien

it's not participating in the transaction so committing or rolling back the transaction will have no effect on commands issued..

How to circumvent using an out parameter in an anonymous method block?

http://stackoverflow.com/questions/384918/how-to-circumvent-using-an-out-parameter-in-an-anonymous-method-block

3.5 you might want to use the Action delegate instead of rolling your own since people will recognise it more. Even in 2.0 there..

How can I programmatically determine if my workstation is locked?

http://stackoverflow.com/questions/44980/how-can-i-programmatically-determine-if-my-workstation-is-locked

hard courtesy of the DoD. That's part of the reason I'm rolling my own actually. I'll write it up anyway and see if it works...

How might I schedule a C# Windows Service to perform a task daily?

http://stackoverflow.com/questions/503564/how-might-i-schedule-a-c-sharp-windows-service-to-perform-a-task-daily

this Use of Thread.Sleep and checking for the time rolling over c# windows services scheduling scheduled tasks share..

Why use Windows Workflow?

http://stackoverflow.com/questions/513657/why-use-windows-workflow

the benefit of using Windows Workflow foundation WF versus rolling your own workflow framework From what I can tell WF only provides.. using a standardized workflow platform such as WF versus rolling your own will allow you to leverage current and future tooling..

AppDomain, handling the exceptions

http://stackoverflow.com/questions/7071957/appdomain-handling-the-exceptions

code throws unhandled exception. Also instead of rolling your own infrastructure you might want to look at System.Addin..

Does reactive extensions support rolling buffers?

http://stackoverflow.com/questions/7597773/does-reactive-extensions-support-rolling-buffers

reactive extensions support rolling buffers I'm using reactive extensions to collate data into..

Beats per minute from real-time audio input

http://stackoverflow.com/questions/79445/beats-per-minute-from-real-time-audio-input

monitor the line in audio and give me the current well the rolling average beats per minute. I've seen this gamedev article and..