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”

  • Silverlight and RIA: Enum Properties


    MSMVPS.COMAuthority Authority: 645
    I mentioned in this prior post that RIA Services did not know how to handle properties that have an Enum data type. The problem is not really that RIA Services does not know how to handle the properties; rather it does not have any knowledge of the Enum itself. Take this example. In C#: public enum ...
    15 hours ago
  • Silverlight and RIA: Sharing Your Business Object Files


    MSMVPS.COMAuthority Authority: 645
    So I have read in dozens of places that you can easily share a source code file between your business objects and your Silverlight project. So I thought I would try it. No go. [To begin with an overview of Silverlight, RIA, and your business objects, start here .] Supposedly, if you created a file in your ...
    15 hours ago
  • Silverlight and RIA: Ignoring a Property in Your Business Object


    MSMVPS.COMAuthority Authority: 645
    There may be times when you want RIA Services to ignore a property in your business object. This may be the case if you know you wont ever need to access the property from your Silverlight UI or if you cant make RIA services understand the property properly. [To begin with an overview of Silverlight, RIA, and your ...
    16 hours ago
  • Modifiers in Unity3D


    Everyday FlashAuthority Authority: 103
    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 ...
    23 hours ago
  • Populating a TreeView Control from a List


    MSMVPS.COMAuthority Authority: 645
    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 ...
    1 day ago
  • ASP.NET Authentication – Multiple Domains w/ Same Application


    .NET AnswersAuthority Authority: 420
    In our series about ASP.NET authentication, so far we’ve covered all the rather normal cases where you’d want to have the ability to log into different domains attached to the same application?  There are a few additional hurdles you’ll need to overcome to make this work correctly.The first is, how do I let ...
    2 days ago
  • title


    Script For AllAuthority Authority: 126
    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 [...]
    3 days ago
  • Silverlight, RIA Services, and Your Business Objects


    MSMVPS.COMAuthority Authority: 645
    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 … ...
    5 days ago
  • Embedding Google Search Appliance Results in ASP.NET


    .NET AnswersAuthority Authority: 420
    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: 645
    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 ...
    6 days ago
  • GridView and Updating A Row Manually


    .NET AnswersAuthority Authority: 420
    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: 645
    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: 434
    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: 645
    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: 407
    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: 434
    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: 645
    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: 645
    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: 645
    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: 645
    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

Comments about CSharp

Personal attacks are NOT allowed
Please read our comment policy