From 5c91529e4f15e4ed3b3f62446c40a5b5a8ed5ba2 Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Sun, 7 Apr 2013 22:41:22 -0400 Subject: [PATCH] Does C# really have both string and String? --- src/SDL2.cs | 2 +- src/SDL2_image.cs | 2 +- src/SDL2_mixer.cs | 2 +- src/SDL2_net.cs | 2 +- src/SDL2_ttf.cs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/SDL2.cs b/src/SDL2.cs index 0fbcfcb..e05fb3b 100644 --- a/src/SDL2.cs +++ b/src/SDL2.cs @@ -41,7 +41,7 @@ namespace SDL2 #region SDL2# Variables /* Used by DllImport to load the native library. */ - private const String nativeLibName = "SDL2.dll"; + private const string nativeLibName = "SDL2.dll"; #endregion diff --git a/src/SDL2_image.cs b/src/SDL2_image.cs index ab6ff66..9f82b61 100644 --- a/src/SDL2_image.cs +++ b/src/SDL2_image.cs @@ -38,7 +38,7 @@ namespace SDL2 #region SDL2# Variables /* Used by DllImport to load the native library. */ - private const String nativeLibName = "SDL2_image.dll"; + private const string nativeLibName = "SDL2_image.dll"; #endregion diff --git a/src/SDL2_mixer.cs b/src/SDL2_mixer.cs index 6a635fe..3c7e1fc 100644 --- a/src/SDL2_mixer.cs +++ b/src/SDL2_mixer.cs @@ -38,7 +38,7 @@ namespace SDL2 #region SDL2# Variables /* Used by DllImport to load the native library. */ - private const String nativeLibName = "SDL2_mixer.dll"; + private const string nativeLibName = "SDL2_mixer.dll"; #endregion diff --git a/src/SDL2_net.cs b/src/SDL2_net.cs index 7460431..eb8f926 100644 --- a/src/SDL2_net.cs +++ b/src/SDL2_net.cs @@ -38,7 +38,7 @@ namespace SDL2 #region SDL2# Variables /* Used by DllImport to load the native library. */ - private const String nativeLibName = "SDL2_net.dll"; + private const string nativeLibName = "SDL2_net.dll"; #endregion diff --git a/src/SDL2_ttf.cs b/src/SDL2_ttf.cs index 07506c3..a5002e0 100644 --- a/src/SDL2_ttf.cs +++ b/src/SDL2_ttf.cs @@ -38,7 +38,7 @@ namespace SDL2 #region SDL2# Variables /* Used by DllImport to load the native library. */ - private const String nativeLibName = "SDL2_ttf.dll"; + private const string nativeLibName = "SDL2_ttf.dll"; #endregion