Questions tagged as 'c#'

1
answer

Return with several json with jquery .net

I need to return to json a json, or rather several json, being city, neighborhood, state, parents, each being a json in the same method, but as it is not possible to do several returns I put the obj list up in one list list. List <...
asked by 02.08.2016 / 22:46
1
answer

Can I create modules in asp.net mvc?

I have a home page with contact and such, similar to other pages. In the page I have a Login button and when I click on the same redirect to a project module. Example: Home localhost / Home / Home / Index Login localhost / EAD / Login / In...
asked by 12.05.2016 / 22:12
2
answers

How to generate a vector using Random to assign values, but to make it never have repeated values? [duplicate]

I'm working on a Bingo in C # for a facul job and I need to do a vector of so many values and do not ever repeat those values, I'm using the following procedure to generate the raffle values ↓ public static void GeraBingo(int[] v)...
asked by 10.05.2016 / 18:35
1
answer

Pass / Receive List between pages and fill listview C # Windows Phone 8.1

I'm creating a small application for windows phone 8.1, in which the user selects as many checkboxes as necessary, and from there the app loops through all the checkboxes to check which ones are selected, and then pick up their value by playing...
asked by 13.05.2016 / 07:50
1
answer

How can I by these random questions? [closed]

using UnityEngine; using UnityEngine.UI; using System.Collections; public class responder : MonoBehaviour { private int idTema; public Text pergunta; public Text RespostaA; public Text RespostaB; public Text RespostaC;...
asked by 11.04.2016 / 18:28
1
answer

c # Hex conversion

I need to create an array of bytes with the following content: byte[] arr = new byte { 0x4f, 0x4e }; I happen to have the string "ON", where "O" = 4f in hex and "N" = 4e I have tried to store the hex value directly in the byte array with...
asked by 27.04.2016 / 17:42
1
answer

Generate C # class from an XSD

I need to generate the class from an .XSD file. Although I have tried everything I knew (used .net tool: xsd.exe, httputility.net and other .cs generators) I did not succeed. I think the error is in the schema that passed me, but I can n...
asked by 15.07.2016 / 20:07
1
answer

ASP.NET MVC error displaying date and time fields in View

Hello I'm having some trouble uploading to View. In the database I have this data saved: Start Date: (datetime) 1998-11-16 00: 00: 00,000 DateTime: (datetime): 1998-11-16 00: 00: 00,000 Timetable (time): 09: 00: 00.0000000 Sida Ti...
asked by 15.07.2016 / 15:56
1
answer

Stored procedure asynchronous

When attempting to execute procedure asynchronously public async Task<ActionResult> Index() { Stopwatch watch = new Stopwatch(); watch.Start(); ContentManagement service = new ContentManagement(); var...
asked by 14.06.2016 / 20:25
1
answer

Navigation between Pages

I am making a sales order app with Xamarin , but I have a problem, call a search page, and return the selected value to the page I was on. I'll explain better below. Screen 1: Order registration screen, in this screen, the operator enter...
asked by 15.06.2016 / 13:35