¡@

Home 

c# Programming Glossary: ability

Complex UI inside ListBoxItem

http://stackoverflow.com/questions/15532639/complex-ui-inside-listboxitem

instead of a regular ListBox does the ListView provide the ability to add ANY UI into it can I add Videos for example for each.. instead of a regular ListBox does the ListView provide the ability to add ANY UI into it can I add Videos for example for each..

Multiple Inheritance in C#

http://stackoverflow.com/questions/178333/multiple-inheritance-in-c-sharp

directly. But sometimes it would be helpful to have this ability. For instance I'm able to implement the missing multiple inheritance.. directly. But sometimes it would be helpful to have this ability. C# and the .net CLR have not implemented MI because they have..

How to start a process from C#?

http://stackoverflow.com/questions/181719/how-to-start-a-process-from-c

of the window it will run in and most usefully for me the ability to wait for the process to finish. Process process new Process..

Expression Versus Statement

http://stackoverflow.com/questions/19132/expression-versus-statement

statement can declare a new local variable&mdash but this ability is useful enough that the GNU C compiler provides a GNU extension..

XML Serialization and Inherited Types

http://stackoverflow.com/questions/20084/xml-serialization-and-inherited-types

type you will be working with. This gives the class the ability to translate between the abstract type and the concrete type..

FileSystemWatcher vs polling to watch for file changes

http://stackoverflow.com/questions/239988/filesystemwatcher-vs-polling-to-watch-for-file-changes

the past but not extensively. What issues performance reliability etc. are there with either method c# filesystemwatcher share.. Edit If you have a UI you can also give your user the ability to refresh for changes instead of polling. I would combine this..

When to Use Static Classes in C#

http://stackoverflow.com/questions/241339/when-to-use-static-classes-in-c-sharp

in hand with the interface woes mentioned above. As our ability of interchanging implementations is very limited we'll also..

High Quality Image Scaling C#

http://stackoverflow.com/questions/249587/high-quality-image-scaling-c-sharp

image untilities such as high quality resizing and the ability to save a JPEG. summary public static class ImageUtilities ..

Convert webpage to image from ASP.NET

http://stackoverflow.com/questions/2715385/convert-webpage-to-image-from-asp-net

this helps. UPDATE I've updated the code to include the ability to capture the full page and not require any special settings..

How to enable design support in a custom control?

http://stackoverflow.com/questions/2785376/how-to-enable-design-support-in-a-custom-control

the System.Design.dll assembly. This class gives you the ability to drag the column headers. A UserControl uses the System.Windows.Forms.Design.ControlDesigner.. ListViewDesigner is not in the picture. You thus lose the ability to drag the column headers. Also note that ControlDesigner doesn't..

Panel not getting focus

http://stackoverflow.com/questions/3562235/panel-not-getting-focus

focus. Is there an more or less elegant way to add this ability to a user control which is based on Panel I've checked many..

How do I make a textbox that only accepts numbers?

http://stackoverflow.com/questions/463299/how-do-i-make-a-textbox-that-only-accepts-numbers

you which is nice. Of course it also gives your users the ability to hit the up and down arrows on the keyboard to increment and..

Inline functions in C#?

http://stackoverflow.com/questions/473782/inline-functions-in-c

functions EDIT The answers almost entirely deal with the ability to inline functions a manual or compiler optimization that replaces..

What is the purpose of self tracking entities?

http://stackoverflow.com/questions/5091974/what-is-the-purpose-of-self-tracking-entities

common entity is detached it loose any change tracking ability. This is exactly what STE solves. STE is able to track changes..

When to use struct in C#?

http://stackoverflow.com/questions/521298/when-to-use-struct-in-c

of value types. They are quick and efficient but have the ability to cause many unexpected behaviors if not properly maintained..

Read MS Exchange email in C#

http://stackoverflow.com/questions/652549/read-ms-exchange-email-in-c-sharp

MS Exchange email in C# I need the ability to monitor for and read email from a particular mailbox on a..

C# 3.0 auto-properties - useful or not?

http://stackoverflow.com/questions/9304/c-sharp-3-0-auto-properties-useful-or-not

I save a lot of code one vs six lines without losing the ability to change the getter setter logic later but then again I can..