Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace DemoConsole
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.Title = "Split";
- string answer = "id1#AccessOpen";
- string id = answer.Split('#')[0];
- string access = answer.Split('#')[1];
- Console.ReadLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement