new mailling for not confirmed emails

This commit is contained in:
Paul Schneider 2021-05-30 12:30:39 +01:00
commit 45d76a2917
25 changed files with 46 additions and 31 deletions

View file

@ -1,22 +0,0 @@
namespace test {
public class ResxResources {
const string resPath = "Resources/Test.TestResources.resx";
public void HaveAResxLoader()
{
System.Resources.ResourceReader loader = new System.Resources.ResourceReader(resPath);
// IDictionary
var etor = loader.GetEnumerator();
while (etor.Current !=null)
{
byte[] data;
string stringdata;
string resName = etor.Key.ToString();
loader.GetResourceData(resName, out stringdata, out data);
}
}
}
}