//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:2.0.50727.5466 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace CSharpTest.Net { using System; /// /// A strongly-typed resource class, for looking up localized strings, etc. /// // This partial class was auto-generated by the StronglyTypedResourceBuilder // partial class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal partial class Resources { private static global::System.Resources.ResourceManager resourceMan; private static global::System.Globalization.CultureInfo resourceCulture; [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal Resources() { } /// /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CSharpTest.Net.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; } } /// /// Overrides the current thread's CurrentUICulture property for all /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } set { resourceCulture = value; } } /// /// Looks up a localized string similar to Failed to compress/decompress the full input stream.. /// internal static string IOStreamCompressionFailed { get { return ResourceManager.GetString("IOStreamCompressionFailed", resourceCulture); } } /// /// Looks up a localized string similar to Failed to read from input stream.. /// internal static string IOStreamFailedToRead { get { return ResourceManager.GetString("IOStreamFailedToRead", resourceCulture); } } /// /// Looks up a localized string similar to The running process must first exit.. /// internal static string ProcessRunnerAlreadyRunning { get { return ResourceManager.GetString("ProcessRunnerAlreadyRunning", resourceCulture); } } /// /// Invalid file extension: '{0}'. /// public static string InvalidFileExtension(string ext) { return String.Format(resourceCulture, CSharpTest.Net.Resources.FormatStrings.InvalidFileExtension_string_ext_, ext); } /// /// The type {0} is not convertable from a string. /// public static string StringConverterTryParse(System.Type type) { return String.Format(resourceCulture, CSharpTest.Net.Resources.FormatStrings.StringConverterTryParse_System_Type_type_, type); } /// /// The singleton for type {0} threw an excpetion. /// public static string FailedToConstructSingleton(System.Type type) { return String.Format(resourceCulture, CSharpTest.Net.Resources.FormatStrings.FailedToConstructSingleton_System_Type_type_, type); } /// /// Returns the raw format strings. /// [global::System.Diagnostics.DebuggerStepThroughAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("CSharpTest.Net.Generators", "2.12.810.409")] public static partial class FormatStrings { /// /// Invalid file extension: '{0}'. /// public static string InvalidFileExtension_string_ext_ { get { return ResourceManager.GetString("InvalidFileExtension(string ext)", resourceCulture); } } /// /// The type {0} is not convertable from a string. /// public static string StringConverterTryParse_System_Type_type_ { get { return ResourceManager.GetString("StringConverterTryParse(System.Type type)", resourceCulture); } } /// /// The singleton for type {0} threw an excpetion. /// public static string FailedToConstructSingleton_System_Type_type_ { get { return ResourceManager.GetString("FailedToConstructSingleton(System.Type type)", resourceCulture); } } } /// /// Returns the raw exception strings. /// [global::System.Diagnostics.DebuggerStepThroughAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("CSharpTest.Net.Generators", "2.12.810.409")] public static partial class ExceptionStrings { /// /// Formats a message for an exception /// internal static string SafeFormat(string message, params object[] args) { try { return string.Format(resourceCulture, message, args); } catch { return message ?? string.Empty; } } /// /// internal static string HelpLinkFormat(int hResult, string typeName) { return SafeFormat("", hResult, typeName); } /// /// Debug Assertion Failed: {0} /// public static string DebugAssertionFailedException_string_message_ { get { return ResourceManager.GetString("DebugAssertionFailedException(string message)", resourceCulture); } } /// /// The LurchTable internal datastructure appears to be corrupted. /// public static string LurchTableCorruptionException { get { return ResourceManager.GetString("LurchTableCorruptionException", resourceCulture); } } } } /// /// Exception class: DebugAssertionFailedException /// Debug Assertion Failed: {0} /// [System.SerializableAttribute()] [global::System.Diagnostics.DebuggerStepThroughAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("CSharpTest.Net.Generators", "2.12.810.409")] public partial class DebugAssertionFailedException : System.ApplicationException { /// /// Serialization constructor /// protected DebugAssertionFailedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// /// Used to create this exception from an hresult and message bypassing the message formatting /// internal static System.Exception Create(int hResult, string message) { return new DebugAssertionFailedException((System.Exception)null, hResult, message); } /// /// Constructs the exception from an hresult and message bypassing the message formatting /// protected DebugAssertionFailedException(System.Exception innerException, int hResult, string message) : base(message, innerException) { base.HResult = hResult; base.HelpLink = CSharpTest.Net.Resources.ExceptionStrings.HelpLinkFormat(HResult, GetType().FullName); } /// /// Debug Assertion Failed: {0} /// public DebugAssertionFailedException(string message) : this((System.Exception)null, -1, CSharpTest.Net.Resources.ExceptionStrings.SafeFormat(CSharpTest.Net.Resources.ExceptionStrings.DebugAssertionFailedException_string_message_, message)) { } /// /// Debug Assertion Failed: {0} /// public DebugAssertionFailedException(string message, System.Exception innerException) : this(innerException, -1, CSharpTest.Net.Resources.ExceptionStrings.SafeFormat(CSharpTest.Net.Resources.ExceptionStrings.DebugAssertionFailedException_string_message_, message)) { } /// /// if(condition == false) throws Debug Assertion Failed: {0} /// public static void Assert(bool condition, string message) { if (!condition) throw new DebugAssertionFailedException(message); } } /// /// Exception class: LurchTableCorruptionException /// The LurchTable internal datastructure appears to be corrupted. /// [System.SerializableAttribute()] [global::System.Diagnostics.DebuggerStepThroughAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("CSharpTest.Net.Generators", "2.12.810.409")] public partial class LurchTableCorruptionException : System.ApplicationException { /// /// Serialization constructor /// protected LurchTableCorruptionException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } /// /// Used to create this exception from an hresult and message bypassing the message formatting /// internal static System.Exception Create(int hResult, string message) { return new LurchTableCorruptionException((System.Exception)null, hResult, message); } /// /// Constructs the exception from an hresult and message bypassing the message formatting /// protected LurchTableCorruptionException(System.Exception innerException, int hResult, string message) : base(message, innerException) { base.HResult = hResult; base.HelpLink = CSharpTest.Net.Resources.ExceptionStrings.HelpLinkFormat(HResult, GetType().FullName); } /// /// The LurchTable internal datastructure appears to be corrupted. /// public LurchTableCorruptionException() : this((System.Exception)null, -1, CSharpTest.Net.Resources.ExceptionStrings.LurchTableCorruptionException) { } /// /// The LurchTable internal datastructure appears to be corrupted. /// public LurchTableCorruptionException(System.Exception innerException) : this(innerException, -1, CSharpTest.Net.Resources.ExceptionStrings.LurchTableCorruptionException) { } /// /// if(condition == false) throws The LurchTable internal datastructure appears to be corrupted. /// public static void Assert(bool condition) { if (!condition) throw new LurchTableCorruptionException(); } } }