代码搜索:Wrox

找到约 2,023 项符合「Wrox」的源代码

代码结果 2,023
www.eeworm.com/read/476331/1372382

cs projectinstaller.cs

using System.ComponentModel; using System.Configuration.Install; namespace Wrox.ProCSharp.WinServices { [RunInstaller(true)] public partial class ProjectInstaller : Installer {
www.eeworm.com/read/476331/1372502

cs orderline.cs

using System; namespace Wrox.ProCSharp.EnterpriseServices { [Serializable] public class OrderLine { public static OrderLine Create(int productId, float unitPrice, int quant
www.eeworm.com/read/476331/1372503

cs ordercontrol.cs

using System; using System.EnterpriseServices; using System.Runtime.InteropServices; namespace Wrox.ProCSharp.EnterpriseServices { [ComVisible(true)] public interface IOrderControl
www.eeworm.com/read/476331/1372613

cs program.cs

using System.Security.Permissions; namespace Wrox.ProCSharp.security { class Program { static void Main() { MyClass.Method(); } } class MyClass { [FileIOPermissi
www.eeworm.com/read/476331/1372677

cs sampleroleprovider.cs

using System; using System.Web.Security; namespace Wrox.ProCSharp.Security { public class SampleRoleProvider : RoleProvider { internal static string ManagerRoleName = "Manage
www.eeworm.com/read/476331/1372751

cs documentmanager.cs

using System; using System.Collections.Generic; namespace Wrox.ProCSharp.Generics { public class DocumentManager : IDocumentManager where TDocument: Document
www.eeworm.com/read/476331/1373071

cs program.cs

using System; using System.Threading; using System.Transactions; namespace Wrox.ProCSharp.Transactions { class Program { static void Main() { try {
www.eeworm.com/read/476331/1373093

cs coursedata.cs

using System; using System.Data.SqlClient; namespace Wrox.ProCSharp.Transactions { public class CourseData { public void AddCourse(Course course) { SqlC
www.eeworm.com/read/476331/1373116

cs program.cs

using System; using System.Data.SqlClient; namespace Wrox.ProCSharp.Transactions { class Program { static void Main() { SqlConnection connection = new Sql
www.eeworm.com/read/476331/1373187

cs racer.cs

using System; using System.Collections.Generic; namespace Wrox.ProCSharp.Collections { [Serializable] public class Racer : IComparable, IFormattable //, IEquatable {