diff --git a/X10D/src/ExceptionMessages.Designer.cs b/X10D/src/ExceptionMessages.Designer.cs
new file mode 100644
index 0000000..e010daf
--- /dev/null
+++ b/X10D/src/ExceptionMessages.Designer.cs
@@ -0,0 +1,117 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace X10D {
+ using System;
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // 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", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class ExceptionMessages {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal ExceptionMessages() {
+ }
+
+ ///
+ /// 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("X10D.src.ExceptionMessages", typeof(ExceptionMessages).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 HashAlgorithm's Create method returned null referenece..
+ ///
+ internal static string HashAlgorithmCreateReturnedNull {
+ get {
+ return ResourceManager.GetString("HashAlgorithmCreateReturnedNull", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to HashAlgorithm does not offer Create method..
+ ///
+ internal static string HashAlgorithmNoCreateMethod {
+ get {
+ return ResourceManager.GetString("HashAlgorithmNoCreateMethod", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Length must be a positive value..
+ ///
+ internal static string LengthMustBePositiveValue {
+ get {
+ return ResourceManager.GetString("LengthMustBePositiveValue", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to {{0}} does not inherit {typeof(Attribute)}.
+ ///
+ internal static string TypeDoesNotInheritAttribute {
+ get {
+ return ResourceManager.GetString("TypeDoesNotInheritAttribute", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to {{0}} is not a class.
+ ///
+ internal static string TypeIsNotClass {
+ get {
+ return ResourceManager.GetString("TypeIsNotClass", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to {{0}} is not an interface.
+ ///
+ internal static string TypeIsNotInterface {
+ get {
+ return ResourceManager.GetString("TypeIsNotInterface", resourceCulture);
+ }
+ }
+ }
+}
diff --git a/X10D/src/ExceptionMessages.cs b/X10D/src/ExceptionMessages.cs
deleted file mode 100644
index 789e273..0000000
--- a/X10D/src/ExceptionMessages.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System;
-
-namespace X10D
-{
- internal static class ExceptionMessages
- {
- public static readonly string TypeDoesNotInheritAttribute = $"{{0}} does not inherit {typeof(Attribute)}";
- public static readonly string TypeIsNotClass = $"{{0}} is not a class";
- public static readonly string TypeIsNotInterface = $"{{0}} is not an interface";
- }
-}
diff --git a/X10D/src/ExceptionMessages.resx b/X10D/src/ExceptionMessages.resx
new file mode 100644
index 0000000..ed1524d
--- /dev/null
+++ b/X10D/src/ExceptionMessages.resx
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 1.3
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral,
+ PublicKeyToken=b77a5c561934e089
+
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral,
+ PublicKeyToken=b77a5c561934e089
+
+
+
+ {{0}} is not a class
+
+
+ {{0}} is not an interface
+
+
+ {{0}} does not inherit {typeof(Attribute)}
+
+
+ HashAlgorithm does not offer Create method.
+
+
+ HashAlgorithm's Create method returned null referenece.
+
+
+ Length must be a positive value.
+
+
\ No newline at end of file