Estoy tratando de usar System.Security.Cryptography.RNGCryptoServiceProvider en mi biblioteca .NET Standard 1.4 y de acuerdo con este tema mi código se ve así:
private byte[] GenerateRandomNumber(int length)
{
using (var randomNumberGenerator = RandomNumberGenerator.Create())
....
5 sep. 2017 a las 12:43
Un simple { {X0}} no quieren estar en la clase de la biblioteca
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace UtilyTools
{
public class Why
{
public void gluk()
{
var intList= new List<int> { 1, 2, 3};
int not....
1 sep. 2017 a las 15:02
Tengo una biblioteca de clase .NET Standard 1.4 que hace referencia al paquete NuGet System.ComponentModel.Annotations (4.3.0).
Luego estoy haciendo referencia a esta biblioteca de clases desde un proyecto de prueba de .NET Framework 4.6.2. Se construye bien, pero en tiempo de ejecución me sale el s....
18 may. 2017 a las 19:25