Skip to main content

Home/ Coders/ Group items tagged C# development

Rss Feed Group items tagged

Joel Bennett

Module initializers in C# - 6 views

  •  
    One feature of the CLR that is not available in C# or VB.NET are module initializers (or module constructors). A module initializer is simply a global function which is named .cctor and marked with the attributes SpecialName and RTSpecialName. It is run when a module (each .NET assembly is comprised of one or more modules, typically just one) is loaded for the first time, and is guaranteed to run before any other code in the module runs, before any type initializers, static constructors or any other initialization code.
Joel Bennett

Bling DSL for C#/WPF - Home - 0 views

  •  
    "Bling is a C#-based library for easily programming images, animations, interactions, and visualizations on Microsoft's WPF/.NET. Bling is oriented towards design technologists, i.e., designers who sometimes program, to aid in the rapid prototyping of rich UI design ideas. "
yippeeyahoo

Predict the output challenge (C#) - 1 views

  •  
    Weird C# Quirks that may surprise you.
Joel Bennett

NTrace 1.0 (Beta) - Event Tracing for Windows (ETW) for C# Developers - 0 views

  •  
    NTrace is based on ETW(Event Tracing For Windows) which is a kernel-level tracing service which has several benefits over the tracing provided in .NET... Most importantly, it can be turned on and off without restarting the application, but it also has features like built-in high performance circular logging (a circular log is one that never grows above a specified size by flushing out older trace messages), and the ability for you to capture the logs from multiple sources into a single trace session.
  •  
    Might be C# only, because of the build step
Joel Bennett

C4F Developer Kit - CodePlex - 0 views

  •  
    The kit includes drag 'n drop Controls and Components, SmartTags, VB.Net and C# source code for all tools and samples as well as complete QuickStarts, APIs, and documentation.
Matteo Spreafico

LINQPad - 1 views

  •   LINQPad lets you interactively query SQL databases in a modern query language: LINQ.  Kiss goodbye to SQL Management Studio!
  • it's a highly ergonomic code snippet IDE that instantly executes any C#/VB expression, statement block or program – the ultimate in dynamic development.
  • Best of all, LINQPad standard edition is free and can run without installation (or with a low-impact setup)
Ravi Kumar

asp.net mvc, c#, programming language, google maps, software, technology - 0 views

  •  
    Free code, example and tutorials for software developers, software architects and team leads. Sharing experience with application software, geographic information systems,open source gis, web gis, google maps,technology articles, technology news, newest technology,emerging technology
Rodolfo Arce

Edit, Compile and Debug .NET on Linux using VS Code - RHD Blog - 0 views

  •  
    Introducción a compilar y debuggear con .Net Core en Linux con VS Code
David Rietz

Partitioning and Layering a Software Application (Examples in C#) - 0 views

  •  
    This course focuses on techniques such as interface-based design, proper use of inheritance, inversion of control, factories, single responsibility, facades, and other patterns and techniques that help develop software layers.
Joel Bennett

Software Transactional Memory (MSDN Blog: Developing for Developers) - 0 views

  •  
    A great article explaining Software Transactional Memory for programmers who've never heard of it.
Joel Bennett

Ultimate++ - 0 views

  • Ultimate++ is a C++ cross-platform rapid application development suite focused on programmers productivity. It includes a set of libraries (GUI, SQL, etc..), and an integrated development environment.
  •  
    U++ looks like an interesting alternative to qt and wxWidgets as a cross-platform widget toolkit -- it has it's own IDE with graphical form design, etc.
anonymous

PureMVC - 1 views

  •  
    PureMVC is a lightweight framework for creating applications based upon the classic Model, View and Controller concept. Based upon proven design patterns, this free, open source framework which was originally implemented in the ActionScript 3 language for use with Adobe Flex, Flash and AIR, is now being ported to all major development platforms.
emysa341

Text To Speech Conversion using Espeak Engine for Iphone Application Development | crun... - 0 views

  •  
    There are some 3rd party libraries and API which are used to convert TTS ( TEXT TO SPEECH ) in iphone 1) Sphinix                        ( Not Efficeint  ) 2) Open-Ear                    ( Do not Required Internet Connectivity offline  TTS ) 3) Google TTS             (Requires Internet Connection) 4) Acapela                      (Not Free You Have to pay to get SDK) 5) Objectuve C Speech Synthesizer Speak Engine (Do Not Required Internet Connectivity One of the Good offline TTS )
Joel Bennett

The Julia Language - 8 views

  •  
    Julia is a high-level, high-performance dynamic programming language for technical computing. It supports distributed parallel execution, numerical accuracy, and an extensive mathematical function library. It uses an LLVM-based JIT compiler to achieve near C performance that far outstrips Python/Matlab/R ...
Joel Bennett

Simple.Data - Mark Rendle - GitHub - 4 views

  •  
    A light-weight, dynamic data access component for C# 4.0
Joel Bennett

Desktop Switching - CodeProject - 3 views

  •  
    A great article on how to use Windows desktop switching APIs from C# ... (as a side note, you can import this class into PowerShell and just go crazy)
Joel Bennett

FAQ: How do I start a program as the desktop user from an elevated app? - Aaron Margosi... - 0 views

  •  
    RunAsDesktopUser C++ project
Joel Bennett

Using RabbitMQ with C# and .NET - 3 views

  • I'm currently working on a project where I need to be able to transfer a large number of requests via JSON over web services. I need to take some of that data, do some aggregation with it, and store it in a persistent store. In order to allow the data to be reliably processed in a number of different ways, I wanted to place the incoming data into multiple queues and have it processed and then stored.
  • RabbitMQ fits the bill on all of these fronts, is crazy easy to setup and use, and is very fast.
  • RabbitMQ is written in Erlang
  •  
    RabbitMQ is a cross-platform implementation of an Advanced Message Qeuing Protocol (AMQP) broker (similar to MSMQ). There's a .Net client, and it allows you to decouple your routing and an message storage, and do so in a cross-platform way.
« First ‹ Previous 61 - 80 of 145 Next › Last »
Showing 20 items per page