본문 바로가기
반응형

C#4

OpenFileDialog get Path and FileName OpenFileDialog fileOpendialog = new OpenFileDialog(); fileOpendialog.Filter = "All files | *.*"; // 파일 및 경로가 존제하는지 확인 fileOpendialog.CheckFileExists = true; fileOpendialog.CheckPathExists = true; if (fileOpendialog.ShowDialog() == DialogResult.OK) { // ver 01 string test = fileOpendialog.FileName; int index = test.LastIndexOf("\\"); // 마지막줄에 \\ 인덱스 가져오기. string filename_ver1 = test.Substring(ind.. 2021. 3. 9.
String interpolation String Interpolation string afriend = "Bill"; string firstFriend = "Maria"; string secondFriend = "Sage"; Console.WriteLine("Hello " + afriend); // result : Hello Bill Console.WriteLine($"Hello world!{afriend}"); // result : Hello world!Bill Console.WriteLine($"My friends are {firstFriend} and {secondFriend}"); // result : My friends are Maria and Sage Console.WriteLine($"The name {firstFriend} .. 2021. 2. 19.
C# Start "Hello World! using System; namespace Kor.Ofic.Bee.ConsoleApp1 { class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); Console.WriteLine("I Want Addition!. Please enter two numbers."); Console.WriteLine("First number: "); int num1 = int.Parse(Console.ReadLine()); // first number insert and conversion Console.WriteLine("Second number: "); int num2 = int.Parse(Console.ReadLine());.. 2020. 11. 25.
C# Override class Base public class BaseView : MonoBehaviour { // 위치를 리셋시키는 함수 virtual protected void RePosition() { // 자신의 Anchor 기준으로 ... 현재 위치를 0,0 으로 리셋 RectTransform rt = GetComponent(); rt.anchoredPosition = new Vector2(0, 0); } } public class TopView : BaseView { // Start is called before the first frame update void Start() { base.RePosition(); // TODO:: } } 2020. 7. 15.
반응형