TechNet
Products
IT Resources
Downloads
Training
Support
Products
Windows
Windows Server
System Center
Microsoft Edge
Office
Office 365
Exchange Server
SQL Server
SharePoint Products
Skype for Business
See all products »
Resources
Channel 9 Video
Evaluation Center
Learning Resources
Microsoft Tech Companion App
Microsoft Technical Communities
Microsoft Virtual Academy
Script Center
Server and Tools Blogs
TechNet Blogs
TechNet Flash Newsletter
TechNet Gallery
TechNet Library
TechNet Magazine
TechNet Wiki
Windows Sysinternals
Virtual Labs
Solutions
Networking
Cloud and Datacenter
Security
Virtualization
Updates
Service Packs
Security Bulletins
Windows Update
Trials
Windows Server 2016
System Center 2016
Windows 10 Enterprise
SQL Server 2016
See all trials »
Related Sites
Microsoft Download Center
Microsoft Evaluation Center
Drivers
Windows Sysinternals
TechNet Gallery
Training
Expert-led, virtual classes
Training Catalog
Class Locator
Microsoft Virtual Academy
Free Windows Server 2012 courses
Free Windows 8 courses
SQL Server training
Microsoft Official Courses On-Demand
Certifications
Certification overview
Special offers
MCSE Cloud Platform and Infrastructure
MCSE: Mobility
MCSE: Data Management and Analytics
MCSE Productivity
Other resources
Microsoft Events
Exam Replay
Born To Learn blog
Find technical communities in your area
Azure training
Official Practice Tests
Support options
For business
For developers
For IT professionals
For technical support
Support offerings
More support
Microsoft Premier Online
TechNet Forums
MSDN Forums
Security Bulletins & Advisories
Not an IT pro?
Microsoft Customer Support
Microsoft Community Forums
Sign in
Home
Library
Wiki
Learn
Gallery
Downloads
Support
Forums
Blogs
Resources For IT Professionals
United States (English)
Россия (Pусский)
中国(简体中文)
Brasil (Português)
Skip to locale bar
Get this Tag RSS feed
Translate this page
Powered by
Microsoft® Translator
Popular Tags
Active Directory
AD
AD DS
adfs
ASP.NET
azure
BizTalk
BizTalk Server
BizTalk Server 2010
C#
Candidate for deletion
certification
cloud
core docs
de-DE
EAA
Ed Price
Ed's Stub Pages
en-US
ESA
es-ES
Excel
Exchange
Exchange 2010
fa-IR
Fernando Lugao Veltem
FIM
FIM 2010
FIM Resources
FIM-HELP
forefront
forums
fr-FR
Gokan Ozcifci
has code
has comment
has comments
has image
has Images
has Other Languages
has See Also
Has Table
Has TOC
Horizon_Net
How To
Hyper-V
id-ID
IIS
Italian Wiki Articles
it-IT
ja-JP
Jordano Mazzoni
Link Collection
Luciano Lima
Luigi Bruno
Lync Server 2010
MIISILMFIM MACAULAY
Multi Language Wiki Articles
needs work
operations manager
Pirated Content
Portal
Português Brasil
PowerShell
pt-BR
security
SharePoint
SharePoint 2010
SharePoint 2013
SharePoint Pirate
Small Basic
solucionando problemas
SQL Server
SQL Server 2012
stub
System Center
System Center 2012
TechNet Guru
TechNet Wiki
TechNet Wiki Featured Article
tonyso
Translated into Japanese
troubleshooting
tr-TR
vídeo
Video
Virtualization
VMM
Wiki
Windows
Windows 7
Windows 8
Windows Azure
Windows Server
Windows Server 2003
Windows Server 2008
Windows Server 2008 R2
Windows Server 2012
yottun8
اکتیو دایرکتوری
Browse by Tags
>
TechNet Articles
>
All Tags
>
C#
Tagged Content List
Wiki Page:
WebView - Dynamic Html Page with Images (MVVM)
Naomi N
This article provides support for WebView in Windows 8 to display local html file or html page created dynamically. Oftentimes developers are looking to display local html file but due to the WebView restrictions (for security reasons) are not able to achieve it. This also caters to following Code...
on
6 Aug 2013
Wiki Page:
C#: Ensure User only Runs One Copy of a Program
Ed Price - MSFT
Using a mutex, you can ensure that multiple users can run a program, but each one can run only one copy of the program. This can come in handy when users are logging into a Citrix server or other shared server, and you don't want to limit the application to running only once. The following...
on
6 Aug 2013
Wiki Page:
C# vs CLR Datatype
Naomi N
Source reference Content below is a transcript of the following discussion http://stackoverflow.com/questions/7074/whats-the-difference-between-string-and-string All the content contributed to Stack Overflow, Stack Overflow Meta, Server Fault, and Super User is cc-wiki (aka cc-by-sa )...
on
6 Aug 2013
Wiki Page:
C# Calcolare numero di files presenti in un dato percorso (it-IT)
Emiliano Musso
Il seguente snippet di codice permette di eseguire – dato un percorso iniziale ed un pattern file da considerare – un rapido conteggio dei files presenti nell'intera gerarchia della directory indicata, ovvero nella cartella stessa ed in tutte le sottodirectory ad essa relative. La funzione qui...
on
6 Aug 2013
Wiki Page:
Named Pipes IO for Inter-process Communication
Ed Price - MSFT
Introduction Use the .NET 3.5 Named Pipes IO for Inter-process communication by implementing a pipe listener on a separate thread. The first sample is a WPF project. It can also be done just as easily in Windows forms. Description The sample demonstrates how to pass string data from clients...
on
5 Aug 2013
Wiki Page:
La classe Multibinding in Wpf e C# (it-IT)
Carmelo La Monica
In questo semplice esempio vedremo come utilizzare la Classe Multibinding . La classe MultiBinding consente di associare una proprietà di destinazione dell'associazione a un elenco di proprietà di origine e di applicare quindi una logica per produrre un valore con gli input specificati. In questo...
on
5 Aug 2013
Wiki Page:
C# Convert an .Ico File to a .Bmp
Carmelo La Monica
In this example, using the Bitmap class included in the System.Drawing namespace, an .ico file is converted to a .bmp file to display it in a PictureBox. This is necessary because the .ico format is not supported by the PictureBox control. using System.Drawing; using System.Windows.Forms; namespace...
on
5 Aug 2013
Wiki Page:
C# Visualizzare Risultati Query in DatagridView (it-IT)
Luigi Bruno
L'esempio seguente è finalizzato a mostrare come eseguire il popolamento di una DatagridView, a partire dalla connessione verso un database SQL Server, e dalla successiva esecuzione di una query. Supponendo di lavorare su un ipotetico Form di nome Form1, di aver predisposto in esso una DatagridView...
on
5 Aug 2013
Wiki Page:
Binding an item inside ItemsControl's DataTemplate to the property on Page DataContext
Sachin S
Typically in all scenarios we bind the ItemControl's ItemsSource to the collection of Data Model item. Then we configure our DataTemplate Binding to the properties inside Data Model item. However, in this particular scenario MSDN questioner wanted to bind the one UIElement inside DataTemplate to...
on
31 Jul 2013
Wiki Page:
Where IN and NOT IN Queries with WCF Data Services
J Chase
It's a common requirement to want to select a list of items where the selection criteria matches any value in another list. The following article shows why it's not easy to do this with WCF Data Services out of the box and how to create extension methods to provide this functionality. If...
on
30 Jul 2013
Wiki Page:
Effective C# Coding
Richard Mueller
Make your C# code efficient The following set of effective C# articles contains various ways to improve your C# code. Item 1 - Prefer the Length property when checking string size [ Performance] String comparison involves unnecessary overhead. If all you need is to check whether the...
on
30 Jul 2013
Wiki Page:
Criando e Consumindo Web API - Parte 5
Mauricio Junior - MCP, MCAD, MVP Microsoft
Olá pessoal, hoje eu gostaria de falar e mostrar como customizar as pesquisas no Web API, ou seja, saindo um pouco da rotina já criada pela ferramenta Visual Studio da Microsoft, vamos criar outros métodos dentro do Web API para pesquisas. É importante entender que além do trivial que são os métodos...
on
30 Jul 2013
Wiki Page:
Small Basic: Graduate to C#
Ed Price - MSFT
Table of Contents Motivations Prerequisites ILSpy Visual Studio Express Conversion Create a Small Basic exe Convert to VS project Inside Visual Studio Initial setup The source code Running the Program This article considers how to Graduate a Small Basic program to C#. Motivations There are...
on
23 Jul 2013
Wiki Page:
Buscando lista de grupo do AD de acordo com nome da Rede
Mauricio Junior - MCP, MCAD, MVP Microsoft
Olá leitor(a), hoje eu vou falar um pouco sobre como desenvolver no seu aplicativo Web a busca todos os grupos da rede para um determinado usuário. Esse código funciona também no Windows Forms. Vou tentar explicar o meu exemplo antes de mostrar o código, não irei me alongar muito no artigo. O meu...
on
23 Jul 2013
Wiki Page:
Introduction of New Features in C# 5.0
Patris_70
Introduction of New Features in C# 5.0 1. C# Evolution Matrix Microsoft just published a new version of C# : 5.0 beta with CLR version 4.5 (Visual Studio 11 beta). In order to get a big picture of the whole evolution of C# language, I summarized all the key features into a C# Evolution...
on
22 Jul 2013
Wiki Page:
Consuming OData Based Rest Service in C#
Ed Price - MSFT
Nowadays comunication between applications is an active topic with daily usage and a large amount of pratical appliances. While developing an app in witch I had to consume an OData I found out that combining Linq with my code made this operation pretty easy. The algorithm to consume OData starts with...
on
14 Jul 2013
Wiki Page:
Cascading ComboBoxes in WPF using MVVM
Ed Price - MSFT
When a user is selecting an item from a cascading ComboBox, another ComboBox gets automatically populated with items based on the selection in the first one. This article is about how you can implement this behaviour in a WPF application using the MVVM (Model-View-ViewModel) pattern. Assume that...
on
6 Jul 2013
Wiki Page:
Memory access pattern matters even in managed programming
Filip Ekberg
At BUILD 2013 there was a talk on Native Code Performance and Memory: The Elephant in the CPU , even though I didn’t attend BUILD this year I watched it on Channel9 and I’d like to recap something from it that I find interesting. In many cases I think that we ignore the fact that we need to handle...
on
3 Jul 2013
Wiki Page:
Multithreading Dictionary<>
Naomi N
The sample project highlights differences between Dictionary<>, ConcurrentDictionary<> and using Dictionary<> in combination with a lock. Issues arise with these data structures in a multithreaded scenario when care is not taken when adding and updating entries. Namely, unpredictable...
on
2 Jul 2013
Wiki Page:
Criando e Consumindo Web API - Parte 4
Mauricio Junior - MCP, MCAD, MVP Microsoft
Olá leitor(a), dando continuidade a série de artigos sobre criar e consumir Web API, hoje eu vou falar e mostrar como fazer o PUT ou seja, como fazer “update” no banco de dados usando Web API e o método PUT criado em artigos anteriores. A criação do Web API está descrito todo na primeira parte. ...
on
2 Jul 2013
Wiki Page:
Observer Pattern with Delegates
Richard Mueller
Dive into Observer Pattern with Delegates: Targeted Audience: .NET Architects .NET Application Designers .NET Application Developers Prerequisites: .Net technologies. Basic understanding of design patterns and event handling. Delegates. Problem Statement: In Object Oriented Programming...
on
22 Jun 2013
Wiki Page:
Vinculando seu código e fazendo build automático no Azure
Mauricio Junior - MCP, MCAD, MVP Microsoft
Hoje quando um desenvolvedor pensa em desenvolver software e publicar na Internet, ele precisa pensar na infra-estrutura, código, banco de dados, hospedagem do aplicativo ou site, controle de versão e escalabilidade para o sistema não sair do ar. Temos uma ferramenta muito boa disponibilizada pela...
on
19 Jun 2013
Wiki Page:
Creating a Simple Plugin Mechanism
Ed Price - MSFT
Table of Contents Introduction Creating a simple plugin mechanism from scratch Creating the plugin interface Implementing the plugin interface Implementing the plugin framework Integrate the plugin mechanism in the main application Creating a simple plugin mechanism with MEF Implementing the plugin interface...
on
18 Jun 2013
Wiki Page:
Criando e Consumindo Web API - Parte 2 (pt-BR)
Ed Price - MSFT
Olá pessoal, hoje eu vou falar de Web API parte 2 da forma bem simples e fácil. No artigo anterior criamos a parte do banco de dados e exportamos os dados em forma de XML ou Json. Agora vamos consumir esse Web API usando a linguagem C# .NET. Antes de começar a falar da parte 2, peço para que leia...
on
18 Jun 2013
Wiki Page:
Criando e Consumindo Web API – Parte 3 (pt-BR)
Mauricio Junior - MCP, MCAD, MVP Microsoft
Olá Leitor(a), hoje eu vou dar continuidade à série de artigo falando sobre a tecnologia Web API. Lembro a você da necessidade de leitura dos outros artigos anteriores citados abaixo, para um melhor entendimento e aprendizagem. Vou continuar com o mesmo seguimento, explicando e mostrando o código fonte...
on
10 Jun 2013
Page 3 of 7 (162 items)
1
2
3
4
5
»
Can't find it? Write it!
Post an Article