csharp

Tag details

Welcome to the 'csharp' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'csharp'.

Look up Offsite Link "csharp" at The Free Dictionary

Latest blogosphere posts tagged “csharp”

  • Modifiers in Unity3D


    Everyday FlashAuthority Authority: 91
    Ringo from FlashBookmarks asked me if there were modifiers similar to AS3Dmod in Unity . I searched for something similar some time ago, but didnt find anything interesting. However, when I was starting C# scripting, I ported two of the modifiers from AS3Dmod - Bend and Twist . So I thought to share them with ...
    7 hours ago
  • Populating a TreeView Control from a List


    MSMVPS.COMAuthority Authority: 642
    This post details first how to build a list containing the data to display in a WinForms TreeView control. Then it demonstrates how to use recursion to populate the TreeView control from the list. [For information on populating a TreeView control from XML, see this link .] First, create a class that will ...
    14 hours ago
  • title


    Script For AllAuthority Authority: 124
    Russia opens an antitrust enqute against Microsoft – Actualits – ZDNet. Fr Plays vidé O of Noë L Activetechpros id=”; down”; >; Copyright &Copy; 2009 Interactive CBS. All Rights [...]
    2 days ago
  • Silverlight, RIA Services, and Your Business Objects


    MSMVPS.COMAuthority Authority: 642
    With RIA Services, it is easy to use your own business objects in your Silverlight application… once you have the basic plumbing in place. However, there are quite a few steps required to set up that plumbing. This post details the process of hooking up your business objects, RIA Services, and Silverlight. So … ...
    4 days ago
  • Embedding Google Search Appliance Results in ASP.NET


    .NET AnswersAuthority Authority: 421
    Several of the projects I’m involved with use the Google Search Appliance for their search engine.  For each of these projects, we’ve wanted to integrate the results on an ASPX page so that the results look like they are part of the site rather than taking them to another site to display the results.  [...] ...
    5 days ago
  • IntPtr gets operators !!!


    MSMVPS.COMAuthority Authority: 642
    This seems so incredibly long overdue, but at last as of .NET 4, IntPtr has + and – operators added to it !! This means you can now easily write code such as :     Dim ptr As IntPtr     . . . .     ptr += 4   this is great when dealing with offsets etc.   The actual implementation ...
    5 days ago
  • GridView and Updating A Row Manually


    .NET AnswersAuthority Authority: 421
    A couple of days ago I mentioned a project that I’ve been working on that is a bit out of the ordinary as far as GridViews go.  One of the issues I’ve had is that the edit template doesn’t map to the view template very well.Ok, it doesn’t map at all.You see, the data [...] GridView and Updating A Row ...
    6 days ago
  • XAML: Gradients


    MSMVPS.COMAuthority Authority: 642
    Gradients are a good way to make your application more visually interesting. They turn a flat solid color into something more natural and appealing to the eye by creating an illusion of light and shadow. For example, compare this image which uses flat colors: to this image that uses gradient colors: ...
    1 week ago
  • TDD in a Desgin by Contract World


    Software Development VideosAuthority Authority: 435
    After presenting some basics of Design by Contract using Microsoft’s SpecSharp framework, Greg Young explains how we can keep the Test First mentality in a Contract First world. http://www.infoq.com/presentations/TDD-in-a-DbC-World-Greg-Young
    1 week ago
  • RichTextBox Styles


    MSMVPS.COMAuthority Authority: 642
    If you are building a WinForms application and want to style your text, you may want to use the RichTextBox control instead of the standard TextBox control. This post provides some of the common techniques required to style text in a RichTextBox control. To try out the examples in this post, build a new WinForms ...
    1 week ago
  • Which ORM? LINQ To SQL, Entity Framework? LLBLGen? NHibernate?…?


    Guru StopAuthority Authority: 404
    While I was planning to write about the same topic and have the draft ready in my Windows Live Writer waiting to complete, I found an interesting question in StackOVerflow and couldn’t just resist to answer: ORM/Persistence layer Advice The question starts with: Im starting a new project and Im ...
    1 week ago
  • Test Driving GUI with Approval Tests


    Software Development VideosAuthority Authority: 435
    This video shows why you want to write unit tests for the perspectives of specifications, feedback, regression & granularity. Then write a GUI in C# using Windows Forms & Approval Tests. ApprovalTests is an open source tool that supports C#, Java, Ruby for unit or acceptance tests.
    1 week ago
  • Visual Studio: Clipboard Ring


    MSMVPS.COMAuthority Authority: 642
    Way back when we were using Visual Studio 2005, there was a Clipboard Ring tab in the Toolbox. I loved  that tab! When I am doing a bunch of copy/pastes, I sometimes find that I hit Ctrl+C when I meant to hit Ctrl+V, and poof! my Clipboard was kindly wiped out for me. With VS 2005, I could just open that ...
    1 week ago
  • Unit Testing: Exposing Private Members


    MSMVPS.COMAuthority Authority: 642
    Visual Studio 2008 (Professional Edition and above) provides a really nice set of tools for development and execution of unit tests. It is, of  course, easy for your tests to access the public properties and methods of your classes. But what about those private members? [To begin with an overview of unit testing, ...
    1 week ago
  • Unit Testing: Exposing Internal/Friend Members


    MSMVPS.COMAuthority Authority: 642
    Visual Studio 2008 (Professional Edition and above) provides a really nice set of tools for development and execution of unit tests. It is, of  course, easy for your tests to access the public properties and methods of your classes. But what about those internal/friend members? [To begin with an overview of unit ...
    1 week ago
  • Unit Testing: Testing Properties


    MSMVPS.COMAuthority Authority: 642
    Visual Studio 2008 (Professional Edition and above) provides a really nice set of tools for development and execution of unit tests. This post provides suggestions for testing your property getters and setters. [To begin with an overview of unit testing, start here .] Lets say your Customer class has a LastName ...
    1 week ago
  • What’s new in Visual C# 4.0 ? – Part 3 - Dynamic ExpendoObject


    Ohad's BlogAuthority Authority: 117
    This is the third post of what’s new in Visual Studio C# 4.0. At the former posts we covered optional parameters , Named Parameters at this post we will cover C# Dynamics and ExpandoObject dynamic & ExpendoObject C# 1.0 introduced us to the managed world (based on Microsoft perception) C# 2.0 brought ...
    1 week ago
  • Free training on Visual Studio 2010 and C# 4.0


    Ohad's BlogAuthority Authority: 117
    Did you know that you can train yourself for what’s new in Visual Studio 2010 and C# 4.0 (also VB) ? The Microsoft Visual Studio 2010 and .NET Framework 4 Training Kit - October Preview is available for more than a week now and it includes lots of slide decks, demos and labs covering the following topics: Whats ...
    1 week ago
  • Whats new in Visual C# 4.0 ? - Part 2 - Names Parameters


    Ohad's BlogAuthority Authority: 117
    This is the second post of what’s new in Visual Studio C# 4.0. At the former post we reviewed the feature of optional parameters at this post we will concentrate on Named Parameters. Named Parameters Lets assume you are writing the following procedure : public static void SaySomething( string ...
    2 weeks ago
  • Whats new in Visual C# 4.0 ? - Part 1


    Ohad's BlogAuthority Authority: 117
    This is the first blog from a series of blog post which Im planning to do on whet’s new in Visual C# 4.0 Optional parameters Optional parameters is a new feature in C# 4.0 which will let you set a default value for an argument of a method. In case that the collie of the method will omit the argument the default ...
    2 weeks ago

Comments about csharp

Personal attacks are NOT allowed
Please read our comment policy