AssemblyNameUtility.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Wmi / managed / System / Management / Instrumentation / AssemblyNameUtility.cs / 1305376 / AssemblyNameUtility.cs

                            //------------------------------------------------------------------------------ 
// 
//    Copyright (c) Microsoft Corporation. All Rights Reserved.
//    Information Contained Herein is Proprietary and Confidential.
//  
//-----------------------------------------------------------------------------
 
namespace System.Management.Instrumentation 
{
 	using System; 
	using System.Reflection;
	using System.Globalization;

	sealed class AssemblyNameUtility 
 	{
		private static string BinToString(byte [] rg) 
 		{ 
 			if(rg == null)
				return ""; 
 			string sz = "";
			for(int i=0;i

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK