On CBSSports.com: Mike Tyson's daughter dies in accident
847 Resources for

c#

  • Subscribe to this listing via:
  • RSS
  • Email
Show All Related Tags Did you mean C/C++ (849 results), C# (847 results), C (408 results), C++ (241 results), Microsoft Visual C++ (60 results)more...
Show Fewer Related Tags Did you mean C/C++ (849 results), C# (847 results), C (408 results), C++ (241 results), Microsoft Visual C++ (60 results), SEC (44 results), B2C (29 results), Microsoft Visual C#.Net (26 results), Borland C++Builder (16 results), C++ Builder (11 results), North Carolina (5 results), Washington D.C. (4 results), C-language (2 results), C++ compiler (2 results), ANSI C (2 results), S&C Electric Co. (2 results), J.C. Penney Co. Inc. (1 results), TPC-C (1 results)fewer...

TechRepublic Resources

Play the original Star Trek video game from 1971
Journey with us now back to the halcyon days of 1971, when men coded on paper tape and punch cards, and the ASCII-based adventures of the Starship Enterpise are yours for the asking. by Jay Garmon
Tags: Video Game, Video, Star Trek, Starfleet, Games, Corporate Communications, C#, Personal Technology, Marketing, Programming Languages, Software Development, Software/Web Development, Jay Garmon
Blog posts 2008-08-06
How do I... Make C# or .NET Framework applications accessible in the system tray?
Putting an icon for your application in the system tray is a great way to insure that your program is easily accessible to the user. Zach Smith explains how to use the system tray with C# and the .NET Framework. by Zach Smith
Tags: Microsoft .NET Framework, Code, System Tray, Icon, Form, NotifyIcon, Context Menu, Figure D, C#, Programming Languages, Software Development, Software/Web Development, Zach Smith
Blog posts 2008-06-17
A .NET primer on reference types and value types
Working with reference types and value types is usually not given much thought during daily programming chores; but if you ever choose to pursue .NET certification, you should be familiar with both types. Tony Patton provides you with a solid background in these programming basics. by Tony Patton
Tags: Method, Reference, Class, Type, Object, Class Type, ByRef, Person, Person Class, SwapPeople, SwapValue, person1.FirstName, person1.LastName, person1.Title, person2.FirstName, person2.LastName, person2.Title, Console.WriteLine, Integer, ByVal, .Net, C#, Application Servers, Microsoft Development Tools, Development Tools, Programming Languages, Middleware, Software Development, Software/Web Development, Enterprise Software, Software, Tony Patton
Blog posts 2008-06-16
My move from VB.NET to C#
Justin James confesses why he stuck with VB.NET for so long rather than moving to C# and reveals how life has been now that he's taken the plunge. by Justin James
Tags: Microsoft Visual Basic.Net, .NET Documentation, C#, .Net, Programming Languages, Microsoft Development Tools, Software Development, Software/Web Development, Development Tools, Justin James
Blog posts 2008-06-11
Why it's impossible to become a programming expert
The pace of change in the technology industry has made it nearly impossible to specialize in much or become an expert in anything. I started cluing in on this a few years ago when I was reading a lot about Lisp, but I simply didn't have time to try it...
Tags: .Net, C, C#, Development Tools, Expert Programmer, Java, Justin James, Namespace, Perl, Programmer, Programming, Programming Languages, Scripting Languages, Software Development, Software/Web Development, Web Development
Blog posts 2008-05-27
How do I... Implement the Soundex function in C#?
For years Microsoft SQL Server has provided developers with a method called Soundex that is used to retrieve an encoded string. Words that sound alike have similar encodings, so you can use this functionality to provide some flexibility in searches. This How do I... blog post shows application developers how...
Tags: SQL, Character, Soundex, Zach, C#, Programming Languages, .Net, Databases, Software Development, Software/Web Development, Enterprise Software, Software, Data Management, Zach Smith
Blog posts 2008-04-18
Take advantage of code snippets in Visual Studio 2005
The auto-complete features of Visual Studio .NET are wonderful if you are a Visual Basic developer, but C# developers sorely missed out on the feature. (Of course, C# developers who never use Visual Basic may be unaware of its existence.) Fortunately, Visual Studio 2005 brings auto-complete for code snippets to...
Tags: Folder, Microsoft Visual Studio, Microsoft Visual Studio 2005, Microsoft Visual Basic, Snippet, CodeSnippets Element, Declarations Element, Code Element, Microsoft Development Tools, C#, Programming Languages, Development Tools, Software Development, Software/Web Development, Tony Patton
Blog posts 2008-04-15
How do I... Publish a custom application performance counter in C#?
Within Windows there are many system level processes that publish performance counters. For example there are performance counters that allow you to see CPU time, memory usage, and disk usage of the system. Since performance counters are a standard system function they are an ideal method for tracking the performance...
Tags: Counter, Custom Application, Performance, Code, C#, Performance Counter, Create, PerformanceCounter, RawValue Property, Performance Management, Human Resources, Workforce Management, Zach Smith
Blog posts 2008-04-07
How do I... Determine the distance between ZIP codes using C#?
Calculating the distance between ZIP codes has become a common feature in search engines. For instance, if you're searching for restaurants, a Web site will often allow you to enter a ZIP code and display all of the restaurants within X miles of that ZIP code. Here is one way...
Tags: ZIP Code, Data, List, ZIPCode Class, Haversine Formula, Figure D, C#, .Net, Programming Languages, XML, Software Development, Software/Web Development, Web Development, Zach Smith
Blog posts 2008-03-17
How do I... Use threading to increase performance in C#? (Part 2)
One of the main disadvantages of the ThreadPool is that you send a method to it and you never know when the method has completed. You also will not know whether or not that method threw an exception. As you can imagine, not knowing that an exception has been thrown...
Tags: Method, Performance, Exception, ThreadPool, ThreadManager, MethodContainer, WaitCallback, ExecuteMethod, Microsoft Development Tools, C#, Performance Management, Development Tools, Software Development, Software/Web Development, Programming Languages, Human Resources, Workforce Management, Zach Smith
Blog posts 2008-03-03
ASP.NET basics: Working with the TextBox control
Developers often overlook basic programming options in favor of new or cool ways to deliver results. This is true for many of the standard ASP.NET features. A good example is the TextBox Web control, which offers plenty of options for building applications. This week, I take a closer look at...
Tags: Technique, Control, Microsoft ASP.NET, Property, Server, Font, TextBox1, OnTextChanged, TextBox1_TextChanged, CSS, .Net, C#, Middleware, Scripting Languages, Software/Web Development, Web Development, Software Development, Programming Languages, Enterprise Software, Software, Tony Patton
Blog posts 2008-02-12
How PacketTrap developed its new network management tool
After checking out the demo of PacketTrap's pt360 Tool Suite, I was really curious to find out how they developed this application. Fortunately, on Jan. 17, 2008, I had the pleasure of talking with PacketTrap CTO Sal Sferlazza to hear about the project's behind the scenes work. Sal revealed the challenges...
Tags: Team, Craigslist, Device, Router, Network, Network Management Tool, C++, Tool, Network Management, PacketTrap, Sal Sferlazza, Language Choice, PacketTrap Software, Development Team, Team Management, Productivity, C/C++, C#, Routers & Switches, Networking, Programming Languages, Management, Software Development, Software/Web Development, Justin James
Blog posts 2008-02-05
How do I... Use threading to increase performance in C#? (Part 1)
Threading is commonly used by developers to increase the performance of applications. However, if used incorrectly threading can have the exact opposite effect. Bad threading logic can actually slow down an application, or worse, cause an application to have inconsistent exceptions. There really isn't much to be worried about though...
Tags: Method, Performance, Thread, ThreadPool, C#, Performance Management, .Net, Programming Languages, Software Development, Software/Web Development, Human Resources, Workforce Management, Zach Smith
Blog posts 2008-01-24
How do I... Modify Word documents using C#?
Accessing Word components from C# isn't quite as straightforward as many other features of C# and the .NET Framework. With that said -- it's not rocket science either. You simply need to know what to reference and how to use the components. This blog post is also...
Tags: Document, Component, C#, Figure C, Microsoft Word, Word Processors, Microsoft Office, Office Suites, Software, Zach Smith
Blog posts 2008-01-09
VB to C#: Does Learning = Job?
C# seems the rampant job requirement in the Tampa Bay, FL area {my sector of the world}. Since I am seeking employment, even after 10 + years developing in VB I wonder if spending my unemployed days learning C# is a benefit. Specifically, will learning C# after all...
Tags: .NET, Programming languages, Presidio, C#, job, Microsoft Visual Basic
Discussion threads 2007-11-16
Reading Java Bytecode in C#
Hi, For my work I need to read up a bin file made in Java thus in Java bytecode. I luckily know what I have to read and read up de bytes 4 by 4. The trick seems to work. The header info corresponds with what the original reader finds....
Tags: Programming languages, .NET, gjsonke@..., Java, C#, header info
Discussion threads 2007-11-15
Developer efficiency myths and truths
If you read the ads in development-related magazines or on Web sites, you would think that solving development inefficiency is a great path to making big bucks -- and I believe that it is. There are tons of products on the market that claim to improve developer efficiency, from different...
Tags: Cigarette, Code Generator, Development, Problem, Fact, Developer Efficiency, C#, Development Tools, Programming Languages, Software Development, Software/Web Development, Justin James
Blog posts 2007-11-08
A simple yet pragmatic C#- Tutorial
As a result of a new Enterprise Application, I must learn c#. Can someone direct me to a tutorialonlinewhich will: A. Explain how it works B. Show relvant examples...
Tags: .NET, Programming languages, khill@..., C#
Discussion threads 2007-11-07
How do I... Use C# to upload and download files from an FTP server?
Many applications require the ability to upload and download files via FTP. Even automated processes regularly interact with FTP servers to transfer data. Recognizing this, Microsoft has given developers a fairly straight forward method to implement this functionality. This document concentrates on showing you the easy way to take advantage...
Tags: FTP Server, Server, File, C#, Zach Smith
Blog posts 2007-10-30
Learning computer programing
Hi,Im interested in learning computer programing to help me in the future. I hope to either be a software or game programer or somewhere around there.Im not sure if i should start with c++ or visual basic. I know that my school offers visual basic ellectives but i...
Tags: C/C++, Programming languages, Games, .NET, Microsoft development tools, Development tools, Petersnoboard93@..., computer, C++, C#, game, C, programming
Discussion threads 2007-10-30


IT Professional's Guide to Policies and Procedures, Third Ed
Whether you're creating policies for management, training, personnel, support, privacy, Internet/e-mail usage, security, or inventory, you'll meet the needs of your entire enterprise with this one download!
Buy Now
IT Help Desk Survival Guide, Third Edition
TechRepublic's IT Help Desk Survival Guide, Third Edition provides tools and recommendations to help you better manage help desk services, improve end-user support, troubleshoot frustrating hardware issues, identify quick fixes to vexing Windows problems, and help users make the most of Microsoft Office 2003.
Buy Now

SmartPlanet