<video width="400" controls>
<source src="mov_bbb.mp4" id="video_here">
Your browser does not support HTML5 video.
</video>
<input type="file" name="file[]" class="file_multi_video" accept="video/*">
$(document).on("change", ".file_multi_video", function(evt) {
var $source = $('#video_here');
$source[0].src = URL.createObjectURL(this.files[0]);
$source.parent()[0].load();
});
class Entity {
public double X = 0;
public double Y = 0;
public double Z = 0;
}
class Element : Entity {
public string color = "red";
}
class Room : Entity {
public List<Element> objects;
public void Add(Element obj) {
objects.Add(obj);
}
}
class Door : Element{
public string style = "modern";
}
class Window : Element{
public string material = "wood";
}
Room room = new Room();
room.Add(new Door());
room.Add(new Window());
- два джойстика (не хуже консольных, желательно как у ХВох)
Что приличного можно собрать за 35к?
Ведь c# - это компилируемый язык а не интерпретируемый, а значит код не читается строчка за строчкой а строится синтаксическое дерево. И поэтому мне интересно не все ли равно где объявлять пространства имен?
>dotnet ef migrations add MobileStore --context MobileContext
Build succeeded.
0 Warning(s)
0 Error(s)
Time Elapsed 00:00:02.14
Done. To undo this action, use 'ef migrations remove'
>dotnet ef database update
Build succeeded.
0 Warning(s)
0 Error(s)
Time Elapsed 00:00:03.89
Done.
Извините, сервис "Песочница" на сайте больше не предоставляется.
Все сохранённые пользователями примеры доступны для скачивания по тем же ссылкам, но создавать новые песочницы нельзя.
В качестве альтернативы можно использовать plnkr.co, codepen.io или jsfiddle.net.
this.Hide();
Dictionary<string, string[]> wordDictionary = new Dictionary<string, string[]>();
wordDictionary.Add("YANDEX", new string[] {'yandex1','yandex2'});
wordDictionary.Add("GOOGLE", new string[] {'google1','google2'});
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication5
{
class Program
{
static void Main(string[] args)
{
List<UserInfo> my_list = new List<UserInfo>();
my_list.Add(new UserInfo { name = "Вася", age = 19, male = true});
my_list.Add(new UserInfo { name = "Маша", age = 23, male = false});
Dictionary<string, UserInfo> dic = new Dictionary<string, UserInfo>();
dic.Add("YAndeX", my_list[0]);
dic.Add("GooGle", my_list[1]);
foreach (var temp in dic)
{
Console.WriteLine("Key: " + temp.Key + " Value: Age" + temp.Value.age + " Name: " + temp.Value.name + " is male: " + temp.Value.male);
}
Console.ReadLine();
}
}
class UserInfo
{
public string name { get; set; }
public int age { get; set; }
public bool male { get; set; }
}
}
using System;
using System.Collections.Generic;
namespace ConsoleApplication1
{
class UserInfo
{
// Метод, реализующий словарь
public static Dictionary<int, string> MyDic(int i)
{
Dictionary<int, string> dic = new Dictionary<int,string>();
Console.WriteLine("Введите имя сотрудника: \n");
string s;
for (int j = 0; j < i; j++)
{
Console.Write("Name{0} --> ",j);
s = Console.ReadLine();
dic.Add(j, s);
Console.Clear();
}
return dic;
}
}
class Program
{
static void Main()
{
Console.Write("Сколько сотрудников добавить? ");
try
{
int i = int.Parse(Console.ReadLine());
Dictionary<int, string> dic = UserInfo.MyDic(i);
// Получить коллекцию ключей
ICollection<int> keys = dic.Keys;
Console.WriteLine("База данных содержит: ");
foreach (int j in keys)
Console.WriteLine("ID -> {0} Name -> {1}",j,dic[j]);
}
catch (FormatException)
{
Console.WriteLine("Неверный ввод");
}
Console.ReadLine();
}
}
}