Click here to Skip to main content
15,891,513 members
Articles / Programming Languages / C#

A gameserver Query Library

Rate me:
Please Sign up or sign in to vote.
4.79/5 (21 votes)
26 Dec 20047 min read 230.6K   5K   48  
A library that allows to query nearly all gameserver types
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("GameServerInfo")]
[assembly: AssemblyDescription("A game server query library")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("digital-wave")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]		

[assembly: AssemblyVersion("1.0.1")]

[assembly:ComVisible(false)]
[assembly:CLSCompliant(true)]

[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("..\\..\\..\\digital-wave.snk")]

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.


Written By
Web Developer
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions